Skip to content

Commit 9243010

Browse files
Merge pull request #167 from MITLibraries/pw-125
Update CI workflow
2 parents 3442bf2 + 4872279 commit 9243010

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

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

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

1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
@@ -20,9 +20,9 @@ jobs:
2020

2121
- name: Cache Composer dependencies
2222
id: composer-cache
23-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
23+
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2424

25-
- uses: actions/cache@v2
25+
- uses: actions/cache@v4
2626
with:
2727
path: ${{ steps.composer-cache.outputs.dir }}
2828
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)