Skip to content

Commit fbcdd11

Browse files
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] <[email protected]>
1 parent 9a7ec19 commit fbcdd11

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: ruby/setup-ruby@v1
3333
with:
3434
ruby-version: ${{ matrix.ruby-version }}
35-
- uses: actions/cache@v4
35+
- uses: actions/cache@v5
3636
if: |
3737
runner.os == 'Linux'
3838
with:
@@ -41,7 +41,7 @@ jobs:
4141
key: ${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ hashFiles('lib/**') }}
4242
restore-keys: |
4343
${{ env.CACHE_VERSION }}-${{ runner.os }}-
44-
- uses: actions/cache@v4
44+
- uses: actions/cache@v5
4545
if: |
4646
runner.os == 'macOS'
4747
with:
@@ -50,7 +50,7 @@ jobs:
5050
key: ${{ env.CACHE_VERSION }}-${{ runner.os }}-${{ hashFiles('lib/**') }}
5151
restore-keys: |
5252
${{ env.CACHE_VERSION }}-${{ runner.os }}-
53-
- uses: actions/cache@v4
53+
- uses: actions/cache@v5
5454
if: |
5555
runner.os == 'Windows'
5656
with:

0 commit comments

Comments
 (0)