Skip to content

Commit db44de2

Browse files
build(deps): bump actions/cache from 3 to 4 (#8)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e865a60 commit db44de2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

+2-2
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@v3
60+
uses: actions/cache/restore@v4
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@v3
130+
uses: actions/cache/save@v4
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)