Skip to content

Commit dcf4949

Browse files
committed
I have just updated github workflows
1 parent 0c56e3c commit dcf4949

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
php-versions: ["8.4", "8.3","8.2","8.1","8.0", "7.4", "7.3"]
14+
php-versions: ["8.4","8.3","8.2","8.1","8.0", "7.4", "7.3"]
1515
dependency-stability: ["prefer-stable"]
1616

1717
name: P${{ matrix.php-versions }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system }}
@@ -22,12 +22,12 @@ jobs:
2222
- name: Get Composer Cache Directory
2323
id: composer-cache
2424
run: |
25-
echo "::set-output name=dir::$(composer config cache-files-dir)"
25+
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_ENV
2626
2727
- name: Cache Composer Dependencies
2828
uses: actions/cache@v3
2929
with:
30-
path: ${{ steps.composer-cache.outputs.dir }}
30+
path: ${{ env.dir }}
3131
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
3232
restore-keys: ${{ runner.os }}-composer-
3333

0 commit comments

Comments
 (0)