Skip to content

Commit ac6b959

Browse files
committed
removed outdated php versions from pipeline
1 parent 2ee9f1b commit ac6b959

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/php.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,16 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
fail-fast: false
13+
matrix:
14+
php: [ '8.2', '8.3' ]
1315

1416
steps:
1517
- uses: actions/checkout@v4
1618

1719
- name: Setup PHP
1820
uses: shivammathur/setup-php@2.31.1
1921
with:
20-
php-version: '8.1'
22+
php-version: ${{ matrix.php }}
2123
tools: composer
2224

2325
- name: Validate composer.json and composer.lock
@@ -41,7 +43,7 @@ jobs:
4143
strategy:
4244
fail-fast: false
4345
matrix:
44-
php: ['8.0', '8.1']
46+
php: ['8.2', '8.3']
4547

4648
steps:
4749
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)