Skip to content

Commit faad89c

Browse files
chore(deps): 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) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [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] <[email protected]>
1 parent f9962c0 commit faad89c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
id: npm-cache
1919
run: |
2020
echo "::set-output name=dir::$(npm config get cache)"
21-
- uses: actions/cache@v2
21+
- uses: actions/cache@v3
2222
with:
2323
path: ${{ steps.npm-cache.outputs.dir }}
2424
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
id: npm-cache
1616
run: |
1717
echo "::set-output name=dir::$(npm config get cache)"
18-
- uses: actions/cache@v2
18+
- uses: actions/cache@v3
1919
with:
2020
path: ${{ steps.npm-cache.outputs.dir }}
2121
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)