Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 22, 2024
1 parent 844834e commit 775fc39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
- name: 'jq: cache restore'
id: JQ-CACHE
if: ${{ (inputs.use-cache == true || inputs.use-cache == 'true') && !env.ACT }} # https://github.com/nektos/act#skipping-steps
uses: actions/cache/restore@v3 # https://github.com/actions/cache/tree/main/restore
uses: actions/cache/restore@v4 # https://github.com/actions/cache/tree/main/restore
with:
path: ${{ runner.temp }}/jq
key: ${{ runner.os }}-jq-${{ inputs.version }}
Expand Down Expand Up @@ -176,7 +176,7 @@ runs:
echo '::endgroup::'
- name: 'jq: cache update'
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: ${{ steps.YQ-SETUP.outputs.need_cache_update == 'true' }}
with:
path: ${{ runner.temp }}/jq
Expand Down

0 comments on commit 775fc39

Please sign in to comment.