Skip to content

Commit 46d54cf

Browse files
committed
Update CI config for latest Actions, PHP, and Symfony releases
1 parent e7db0f5 commit 46d54cf

File tree

1 file changed

+17
-12
lines changed

1 file changed

+17
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,24 +16,35 @@ jobs:
1616
- '7.3'
1717
- '7.4'
1818
- '8.0'
19+
- '8.1'
20+
- '8.2'
1921
dependency:
2022
- ''
2123
symfony:
2224
- '4.4.*'
23-
- '5.3.*'
25+
- '5.4.*'
26+
- '6.2.*'
2427
include:
2528
- php: '7.1'
2629
symfony: '4.4.*'
2730
dependency: 'lowest'
28-
- php: '8.0'
29-
symfony: '6.0.*'
3031
exclude:
3132
- php: '7.1'
32-
symfony: '5.3.*'
33+
symfony: '5.4.*'
34+
- php: '7.1'
35+
symfony: '6.2.*'
36+
- php: '7.2'
37+
symfony: '6.2.*'
38+
- php: '7.3'
39+
symfony: '6.2.*'
40+
- php: '7.4'
41+
symfony: '6.2.*'
42+
- php: '8.0'
43+
symfony: '6.2.*'
3344
fail-fast: false
3445
steps:
3546
- name: Checkout
36-
uses: actions/checkout@v2
47+
uses: actions/checkout@v3
3748

3849
- name: Setup PHP
3950
uses: shivammathur/setup-php@v2
@@ -42,18 +53,12 @@ jobs:
4253
extensions: pcov
4354
tools: flex
4455

45-
- name: Prefer unstable Composer dependencies for Symfony 6.0
46-
if: matrix.symfony == '6.0.*'
47-
run: |
48-
composer config prefer-stable false
49-
composer config minimum-stability dev
50-
5156
- name: Get Composer Cache Directory
5257
id: composer-cache
5358
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
5459

5560
- name: Cache dependencies
56-
uses: actions/cache@v2
61+
uses: actions/cache@v3
5762
with:
5863
path: ${{ steps.composer-cache.outputs.dir }}
5964
key: ${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}

0 commit comments

Comments
 (0)