Skip to content

Commit 89eb4f5

Browse files
authored
Update PHP version and actions in lint workflow
1 parent dad575c commit 89eb4f5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/lint.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
php: [ '8.2', '8.3' ]
10+
php: [ '8.2', '8.3', '8.4' ]
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
@@ -23,7 +23,7 @@ jobs:
2323
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
2424

2525
- name: Cache dependencies installed with composer
26-
uses: actions/cache@v2
26+
uses: actions/cache@v4
2727
with:
2828
path: ${{ env.COMPOSER_CACHE_DIR }}
2929
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
@@ -37,4 +37,4 @@ jobs:
3737
run: composer install --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
3838

3939
- name: Run code quality analysis
40-
run: make lint
40+
run: make lint

0 commit comments

Comments
 (0)