Skip to content

Commit c5f616b

Browse files
authored
Merge pull request #17 from NoResponseMate/maintenance/update-ga
[Maintenance] Update GA
2 parents ce6a398 + 9a5e552 commit c5f616b

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/build.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
tests:
1515
runs-on: ubuntu-latest
1616

17-
name: "PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}"
17+
name: "PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, ORM ${{ matrix.orm }}"
1818

1919
strategy:
2020
fail-fast: false
@@ -25,10 +25,14 @@ jobs:
2525
exclude:
2626
- php: 8.1
2727
symfony: 7.0.*
28+
- php: 8.1
29+
symfony: 7.1.*
30+
- php: 8.1
31+
symfony: 7.2.*
2832

2933
steps:
3034
-
31-
uses: actions/checkout@v2
35+
uses: actions/checkout@v4
3236

3337
-
3438
name: Setup PHP
@@ -42,11 +46,11 @@ jobs:
4246
-
4347
name: Get Composer cache directory
4448
id: composer-cache
45-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
49+
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
4650

4751
-
4852
name: Cache Composer
49-
uses: actions/cache@v2
53+
uses: actions/cache@v4
5054
with:
5155
path: ${{ steps.composer-cache.outputs.dir }}
5256
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json **/composer.lock') }}

0 commit comments

Comments
 (0)