Skip to content

Commit

Permalink
feat: Support new PHP (#35)
Browse files Browse the repository at this point in the history
Co-authored-by: oprypkhantc <[email protected]>
  • Loading branch information
package-sync[bot] and oprypkhantc authored May 14, 2024
1 parent f2a4590 commit 9cacccb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/template-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
extensions: dom, libxml, mbstring
tools: composer:v2
coverage: none

- name: Composer cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: vendor
key: composer-${{ hashFiles('composer.json') }}
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2]
php: [8.2, 8.3]

runs-on: packages
container: chialab/php:${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Composer cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: vendor
key: composer-${{ hashFiles('composer.json') }}
Expand All @@ -40,13 +40,13 @@ jobs:
php-cs-fixer:
name: php-cs-fixer
runs-on: packages
container: chialab/php:8.2
container: chialab/php:8.3
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Composer cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: vendor
key: composer-${{ hashFiles('composer.json') }}
Expand All @@ -64,7 +64,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run prettier
uses: actionsx/prettier@v3
Expand All @@ -76,16 +76,16 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2]
php: [8.2, 8.3]

runs-on: packages
container: chialab/php:${{ matrix.php }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Composer cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: vendor
key: composer-${{ hashFiles('composer.json') }}
Expand Down

0 comments on commit 9cacccb

Please sign in to comment.