Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Jan 12, 2024
1 parent ffb07cc commit e32df1a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Restore Yarn cache
uses: actions/cache@v3.3.1
uses: actions/cache@v3.3.3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: yarn-cache-${{ hashFiles('yarn.lock') }}
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Restore Yarn cache
uses: actions/cache@v3.3.1
uses: actions/cache@v3.3.3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: yarn-cache-${{ hashFiles('yarn.lock') }}
Expand All @@ -63,7 +63,7 @@ jobs:
run: sudo chown -H --recursive $(id --name --user):$(id --group --name) ~/.cargo
- name: Restore Cargo cache and artifacts
id: restore-cargo-cache-and-artifacts
uses: actions/cache@v3.3.1
uses: actions/cache@v3.3.3
with:
path: |
~/.cargo/bin
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Restore Yarn cache
uses: actions/cache@v3.3.1
uses: actions/cache@v3.3.3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: yarn-cache-${{ hashFiles('yarn.lock') }}
Expand All @@ -119,7 +119,7 @@ jobs:
run: sudo chown -H --recursive $(id --name --user):$(id --group --name) ~/.cargo
- name: Restore Cargo cache and artifacts
id: restore-cargo-cache-and-artifacts
uses: actions/cache@v3.3.1
uses: actions/cache@v3.3.3
with:
path: |
~/.cargo/bin
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Restore Yarn cache
uses: actions/cache@v3.3.1
uses: actions/cache@v3.3.3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: yarn-cache-${{ hashFiles('yarn.lock') }}
Expand Down

0 comments on commit e32df1a

Please sign in to comment.