Skip to content

Commit 9deacb3

Browse files
dependabot[bot]hsbt
authored andcommitted
Bump actions/cache from 2 to 3
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2ec82dd commit 9deacb3

11 files changed

+14
-14
lines changed

.github/workflows/baseruby.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- uses: actions/checkout@v2
38-
- uses: actions/cache@v2
38+
- uses: actions/cache@v3
3939
with:
4040
path: .downloaded-cache
4141
key: downloaded-cache

.github/workflows/bundled_gems.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
- uses: actions/checkout@v2
3232

33-
- uses: actions/cache@v2
33+
- uses: actions/cache@v3
3434
with:
3535
path: .downloaded-cache
3636
key: downloaded-cache-${{ github.sha }}

.github/workflows/check_dependencies.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
git config --global advice.detachedHead 0
4141
git config --global init.defaultBranch garbage
4242
- uses: actions/checkout@v2
43-
- uses: actions/cache@v2
43+
- uses: actions/cache@v3
4444
with:
4545
path: .downloaded-cache
4646
key: downloaded-cache

.github/workflows/check_misc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
done | grep -F .
2424
working-directory: include
2525

26-
- uses: actions/cache@v2
26+
- uses: actions/cache@v3
2727
with:
2828
path: .downloaded-cache
2929
key: downloaded-cache-${{ github.sha }}

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Checkout repository
3939
uses: actions/checkout@v2
4040

41-
- uses: actions/cache@v2
41+
- uses: actions/cache@v3
4242
with:
4343
path: .downloaded-cache
4444
key: downloaded-cache

.github/workflows/compilers.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ jobs:
204204
- uses: actions/checkout@v2
205205
with:
206206
path: src
207-
- uses: actions/cache@v2
207+
- uses: actions/cache@v3
208208
with:
209209
path: src/.downloaded-cache
210210
key: downloaded-cache

.github/workflows/mingw.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- uses: actions/checkout@v2
5656
with:
5757
path: src
58-
- uses: actions/cache@v2
58+
- uses: actions/cache@v3
5959
with:
6060
path: src/.downloaded-cache
6161
key: downloaded-cache

.github/workflows/mjit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- uses: actions/checkout@v2
4444
with:
4545
path: src
46-
- uses: actions/cache@v2
46+
- uses: actions/cache@v3
4747
with:
4848
path: src/.downloaded-cache
4949
key: downloaded-cache

.github/workflows/ubuntu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- uses: actions/checkout@v2
6969
with:
7070
path: src
71-
- uses: actions/cache@v2
71+
- uses: actions/cache@v3
7272
with:
7373
path: src/.downloaded-cache
7474
key: downloaded-cache

.github/workflows/windows.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ jobs:
4444
shell: msys2 {0}
4545
run: echo PATCH=$(cygpath -wa $(command -v patch)) >> $GITHUB_ENV
4646
if: ${{ steps.setup-msys2.outcome == 'success' }}
47-
- uses: actions/cache@v2
47+
- uses: actions/cache@v3
4848
with:
4949
path: C:\vcpkg\downloads
5050
key: ${{ runner.os }}-vcpkg-download-${{ env.OS_VER }}-${{ github.sha }}
5151
restore-keys: |
5252
${{ runner.os }}-vcpkg-download-${{ env.OS_VER }}-
5353
${{ runner.os }}-vcpkg-download-
54-
- uses: actions/cache@v2
54+
- uses: actions/cache@v3
5555
with:
5656
path: C:\vcpkg\installed
5757
key: ${{ runner.os }}-vcpkg-installed-${{ matrix.os }}-${{ github.sha }}
@@ -61,7 +61,7 @@ jobs:
6161
- name: Install libraries with vcpkg
6262
run: |
6363
vcpkg --triplet x64-windows install libffi libyaml openssl readline zlib
64-
- uses: actions/cache@v2
64+
- uses: actions/cache@v3
6565
with:
6666
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
6767
key: ${{ runner.os }}-chocolatey-${{ env.OS_VER }}-${{ github.sha }}
@@ -83,7 +83,7 @@ jobs:
8383
- uses: actions/checkout@v2
8484
with:
8585
path: src
86-
- uses: actions/cache@v2
86+
- uses: actions/cache@v3
8787
with:
8888
path: src/.downloaded-cache
8989
key: downloaded-cache

.github/workflows/yjit-ubuntu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- uses: actions/checkout@v2
6060
with:
6161
path: src
62-
- uses: actions/cache@v2
62+
- uses: actions/cache@v3
6363
with:
6464
path: src/.downloaded-cache
6565
key: downloaded-cache

0 commit comments

Comments
 (0)