Skip to content

Commit a1212a5

Browse files
chore(deps): bump actions/cache from 4 to 5 (#35)
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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2678f05 commit a1212a5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,17 @@ jobs:
4444
- shell: bash
4545
run: |
4646
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
47-
- uses: actions/cache@v4
47+
- uses: actions/cache@v5
4848
if: matrix.os == 'ubuntu-latest'
4949
with:
5050
path: dist/linux
5151
key: linux-${{ env.sha_short }}${{ env.flags }}
52-
- uses: actions/cache@v4
52+
- uses: actions/cache@v5
5353
if: matrix.os == 'macos-latest'
5454
with:
5555
path: dist/darwin
5656
key: darwin-${{ env.sha_short }}${{ env.flags }}
57-
- uses: actions/cache@v4
57+
- uses: actions/cache@v5
5858
if: matrix.os == 'windows-latest'
5959
with:
6060
path: dist/windows
@@ -100,15 +100,15 @@ jobs:
100100
- shell: bash
101101
run: |
102102
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
103-
- uses: actions/cache@v4
103+
- uses: actions/cache@v5
104104
with:
105105
path: dist/linux
106106
key: linux-${{ env.sha_short }}${{ env.flags }}
107-
- uses: actions/cache@v4
107+
- uses: actions/cache@v5
108108
with:
109109
path: dist/darwin
110110
key: darwin-${{ env.sha_short }}${{ env.flags }}
111-
- uses: actions/cache@v4
111+
- uses: actions/cache@v5
112112
with:
113113
path: dist/windows
114114
key: windows-${{ env.sha_short }}${{ env.flags }}

0 commit comments

Comments
 (0)