Skip to content

Commit

Permalink
fix(ci): update PHP version
Browse files Browse the repository at this point in the history
  • Loading branch information
jibon57 committed Nov 26, 2024
1 parent d09739c commit 7000cea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: [ '7.4', '8.0', '8.1' ]
php-versions: [ '8.x', 'latest' ]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: "8.x"
- name: Build project
run: |
composer install --no-dev --optimize-autoloader --no-scripts --ignore-platform-reqs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if: ${{ steps.release.outputs.release_created }}
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
php-version: "8.x"
- name: Build project
if: ${{ steps.release.outputs.release_created }}
env:
Expand Down

0 comments on commit 7000cea

Please sign in to comment.