Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
docker:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
-
name: Checkout
Expand All @@ -17,12 +17,12 @@ jobs:
- name: Install dependencies
uses: php-actions/composer@v6
with:
php_version: "7.4"
php_version: "8.3"
version: 2

- name: Build
run: |
php7.4 vendor/bin/sculpin generate -vvv -n --env=prod > build_output.log
php8.3 vendor/bin/sculpin generate -vvv -n --env=prod > build_output.log
if grep -iq "notice\|error\|warning" build_output.log ; then return 1; fi

- name: Output
Expand All @@ -46,4 +46,4 @@ jobs:
with:
context: .
push: true
tags: phperspl/phpers-website:latest
tags: phperspl/phpers-website:latest
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ on:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2

- name: Install dependencies
uses: php-actions/composer@v6
with:
php_version: "7.4"
php_version: "8.3"
version: 2

- name: Build
run: |
php7.4 vendor/bin/sculpin generate -vvv -n --env=prod > build_output.log
php8.3 vendor/bin/sculpin generate -vvv -n --env=prod > build_output.log
if grep -iq "notice\|error\|warning" build_output.log ; then return 1; fi

- name: Output
run: cat build_output.log
run: cat build_output.log