Skip to content

Commit 2202d46

Browse files
Bump actions/cache from 2 to 3
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b50ceb3 commit 2202d46

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/analyze.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: mkdir -p ${{ steps.composer-cache.outputs.dir }}
5252

5353
- name: Cache composer dependencies
54-
uses: actions/cache@v2
54+
uses: actions/cache@v3
5555
with:
5656
path: ${{ steps.composer-cache.outputs.dir }}
5757
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -61,7 +61,7 @@ jobs:
6161
run: mkdir -p build/phpstan
6262

6363
- name: Cache PHPStan results
64-
uses: actions/cache@v2
64+
uses: actions/cache@v3
6565
with:
6666
path: build/phpstan
6767
key: ${{ runner.os }}-phpstan-${{ github.sha }}

.github/workflows/inspect.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: mkdir -p ${{ steps.composer-cache.outputs.dir }}
4848

4949
- name: Cache composer dependencies
50-
uses: actions/cache@v2
50+
uses: actions/cache@v3
5151
with:
5252
path: ${{ steps.composer-cache.outputs.dir }}
5353
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -57,7 +57,7 @@ jobs:
5757
run: mkdir -p build/
5858

5959
- name: Cache Deptrac results
60-
uses: actions/cache@v2
60+
uses: actions/cache@v3
6161
with:
6262
path: build
6363
key: ${{ runner.os }}-deptrac-${{ github.sha }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
4040

4141
- name: Cache composer dependencies
42-
uses: actions/cache@v2
42+
uses: actions/cache@v3
4343
with:
4444
path: ${{ steps.composer-cache.outputs.dir }}
4545
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/unused.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
4141

4242
- name: Cache composer dependencies
43-
uses: actions/cache@v2
43+
uses: actions/cache@v3
4444
with:
4545
path: ${{ steps.composer-cache.outputs.dir }}
4646
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)