Skip to content

Commit b3508e7

Browse files
committed
ci: add tests for PHP 8.5
1 parent a8040f9 commit b3508e7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/php-cs-fixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v6
1212

1313
- name: Fix style
1414
uses: docker://oskarstark/php-cs-fixer-ga

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
os: [ubuntu-latest]
15-
php: [7.4, 8.0, 8.1, '8.2', '8.3', '8.4']
15+
php: [7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5]
1616
dependency-version: [prefer-lowest, prefer-stable]
1717

1818
name: P${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
1919

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v6
2323

2424
- name: Cache dependencies
25-
uses: actions/cache@v2
25+
uses: actions/cache@v4
2626
with:
2727
path: ~/.composer/cache/files
2828
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

0 commit comments

Comments
 (0)