Skip to content

Commit 6fa26cc

Browse files
build(deps): bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 7cdae17 commit 6fa26cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- name: Check cached version info to see if current commit has been built before
5858
id: restore-cache-macvim-commit
5959
if: ${{ github.event_name != 'workflow_dispatch' }}
60-
uses: actions/cache/restore@v4
60+
uses: actions/cache/restore@v5
6161
with:
6262
path: ${{ github.workspace }}/macvim-built-commit.txt
6363
key: macvim-built-commit-${{ steps.setup-env-vars.outputs.docs_commit}}-${{ steps.setup-env-vars.outputs.macvim_commit }}
@@ -127,7 +127,7 @@ jobs:
127127
128128
- name: Update cache with commit version info
129129
id: save-cache-macvim-commit
130-
uses: actions/cache/save@v4
130+
uses: actions/cache/save@v5
131131
if: ${{ needs.build.outputs.macvim_commit_cache_hit != 'true' && github.event_name != 'workflow_dispatch' }}
132132
with:
133133
path: ${{ github.workspace }}/macvim-built-commit.txt

0 commit comments

Comments
 (0)