Skip to content

Commit

Permalink
chore(deps): bump actions/cache from 3.0.11 to 3.3.2
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3.0.11 to 3.3.2.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3.0.11...v3.3.2)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Sep 11, 2023
1 parent f849928 commit 2a251ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
node-version: 16.x
- name: Cache Node.js modules
uses: actions/cache@v3.0.11
uses: actions/cache@v3.3.2
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.OS }}-node-16.x-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -47,7 +47,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v3.0.11
uses: actions/cache@v3.3.2
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.OS }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
node-version: '16.x'
- name: Cache Node.js modules
uses: actions/cache@v3.0.11
uses: actions/cache@v3.3.2
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.OS }}-node-16.x-${{ hashFiles('**/package-lock.json') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
node-version: 16.x
- name: Cache Node.js modules
uses: actions/cache@v3.0.11
uses: actions/cache@v3.3.2
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.OS }}-node-16.x-${{ hashFiles('**/package-lock.json') }}
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
with:
version: latest
- name: Cache Docker layers
uses: actions/cache@v3.0.11
uses: actions/cache@v3.3.2
with:
path: /tmp/.buildx-cache
key: ${{ runner.OS }}-buildx-${{ github.sha }}
Expand Down

0 comments on commit 2a251ac

Please sign in to comment.