Skip to content

Commit dad0cac

Browse files
committed
ci: update PHP and Elastic versions in CI configuration
1 parent 9661721 commit dad0cac

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
php: [ 7.4, 8.1 ]
13-
elastic: [ 7.17.0 ]
12+
php: [ '8.2', '8.5' ]
13+
elastic: [ 9.2.2 ]
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717
- uses: shivammathur/setup-php@v2
1818
with:
1919
php-version: ${{ matrix.php }}
@@ -33,14 +33,13 @@ jobs:
3333
- name: Composer
3434
run: make composer
3535

36-
- if: matrix.php == '8.1' && matrix.elastic == '7.17.0'
36+
- if: matrix.php == '8.5' && matrix.elastic == '9.2.2'
3737
name: Coding standard
3838
run: make cs
3939

40-
- if: matrix.php == '8.1' && matrix.elastic == '7.17.0'
40+
- if: matrix.php == '8.5' && matrix.elastic == '9.2.2'
4141
name: PHPStan
4242
run: make phpstan
4343

44-
- if: matrix.php == '8.1'
45-
name: Tests
44+
- name: Tests
4645
run: make tests

0 commit comments

Comments
 (0)