Skip to content

Commit 5a7a185

Browse files
authored
Update actions/cache to v3 (#7)
This addresses the deprecation described at https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1 parent b48f2c7 commit 5a7a185

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
php-version: ${{ env.PHP_VERSION }}
2323
tools: composer:v2
2424
- uses: actions/checkout@v3
25-
- uses: actions/cache@v2
25+
- uses: actions/cache@v3
2626
with:
2727
path: vendor
2828
key: composer-${{ runner.os }}-${{ env.PHP_VERSION }}-${{ hashFiles('composer.json') }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
php-version: ${{ matrix.php-version }}
2929
tools: composer:v2
30-
- uses: actions/cache@v2
30+
- uses: actions/cache@v3
3131
with:
3232
path: vendor
3333
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.symfony-locked-version }}-${{ matrix.dependency-version }}-${{ hashFiles('composer.json') }}

0 commit comments

Comments
 (0)