Skip to content

Commit c59f88e

Browse files
Test against php 8.5 & update actions
* Test against php 8.5 * Update actions/checkout version * Update actions/cacheversion
1 parent a1c3729 commit c59f88e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
8+
php: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
99
name: PHP ${{ matrix.php }} tests
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v5
1212

1313
- name: Get Composer Cache Directory
1414
id: composer-cache
1515
run: |
1616
echo "::set-output name=dir::$(composer config cache-files-dir)"
1717
18-
- uses: actions/cache@v2
18+
- uses: actions/cache@v4
1919
with:
2020
path: ${{ steps.composer-cache.outputs.dir }}
2121
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}

0 commit comments

Comments
 (0)