Skip to content

Commit

Permalink
chore(deps): Bump actions/cache in /.github/actions/bootstrap (#475)
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)
- [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]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 23, 2025
1 parent efaa559 commit a6b2bcb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/bootstrap/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ runs:
poetry-version: ${{ inputs.poetry-version }}

- name: Cache Poetry virtualenv
uses: actions/cache@v3
uses: actions/cache@v4
if: inputs.python == 'true' && inputs.use-poetry-cache == 'true'
id: cache
with:
Expand All @@ -88,7 +88,7 @@ runs:
- name: Restore tool cache
if: inputs.tools == 'true'
id: tool-cache
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
uses: actions/cache@f4b3439a656ba812b8cb417d2d49f9c810103092 # v3.4.0
with:
path: ${{ github.workspace }}/.tool
key: ${{ inputs.cache-key-prefix }}-${{ runner.os }}-tool-${{ hashFiles('.binny.yaml') }}
Expand All @@ -98,7 +98,7 @@ runs:
- name: Restore go module cache
id: go-mod-cache
if: inputs.go == 'true' && inputs.use-go-cache == 'true'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
Expand All @@ -114,7 +114,7 @@ runs:
- name: Restore go build cache
id: go-cache
if: inputs.go == 'true' && inputs.use-go-cache == 'true'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
Expand Down

0 comments on commit a6b2bcb

Please sign in to comment.