Skip to content

Commit 5cf243a

Browse files
authoredJan 23, 2024
chore(deps): Update actions/cache action to v4 (#1955)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://togithub.com/actions/cache) | action | major | `v3` -> `v4` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>actions/cache (actions/cache)</summary> ### [`v4`](https://togithub.com/actions/cache/compare/v3...v4) [Compare Source](https://togithub.com/actions/cache/compare/v3...v4) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/cerbos/cerbos). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 58a915c commit 5cf243a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎.github/actions/setup-go/action.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ runs:
3737
- name: Cache dependencies
3838
id: cache_deps
3939
if: ${{ inputs.write_deps_cache == 'true' }}
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: |
4343
~/go/pkg/mod
@@ -49,7 +49,7 @@ runs:
4949
- name: Restore cached dependencies
5050
id: restore_deps
5151
if: ${{ inputs.write_deps_cache != 'true' }}
52-
uses: actions/cache/restore@v3
52+
uses: actions/cache/restore@v4
5353
with:
5454
path: |
5555
~/go/pkg/mod
@@ -61,7 +61,7 @@ runs:
6161
- name: Cache build outputs
6262
id: cache_build
6363
if: ${{ inputs.write_build_cache == 'true' }}
64-
uses: actions/cache@v3
64+
uses: actions/cache@v4
6565
with:
6666
path: |
6767
~/.cache/go-build
@@ -72,7 +72,7 @@ runs:
7272
- name: Restore cached build outputs
7373
id: restore_build
7474
if: ${{ inputs.write_build_cache != 'true' }}
75-
uses: actions/cache/restore@v3
75+
uses: actions/cache/restore@v4
7676
with:
7777
path: |
7878
~/.cache/go-build

‎.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
username: ${{ secrets.DOCKER_HUB_USER }}
4646
password: ${{ secrets.DOCKER_HUB_TOKEN }}
4747

48-
- uses: actions/cache@v3
48+
- uses: actions/cache@v4
4949
with:
5050
path: |
5151
~/go/pkg/mod

0 commit comments

Comments
 (0)