Skip to content

Commit

Permalink
Bump actions/cache from 2 to 3
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
dependabot[bot] authored and hsbt committed Mar 24, 2022
1 parent 2ec82dd commit 9deacb3
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/baseruby.yml
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: .downloaded-cache
key: downloaded-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundled_gems.yml
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v2

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: .downloaded-cache
key: downloaded-cache-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_dependencies.yml
Expand Up @@ -40,7 +40,7 @@ jobs:
git config --global advice.detachedHead 0
git config --global init.defaultBranch garbage
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: .downloaded-cache
key: downloaded-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_misc.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
done | grep -F .
working-directory: include

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: .downloaded-cache
key: downloaded-cache-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: .downloaded-cache
key: downloaded-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compilers.yml
Expand Up @@ -204,7 +204,7 @@ jobs:
- uses: actions/checkout@v2
with:
path: src
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: src/.downloaded-cache
key: downloaded-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mingw.yml
Expand Up @@ -55,7 +55,7 @@ jobs:
- uses: actions/checkout@v2
with:
path: src
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: src/.downloaded-cache
key: downloaded-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mjit.yml
Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v2
with:
path: src
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: src/.downloaded-cache
key: downloaded-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Expand Up @@ -68,7 +68,7 @@ jobs:
- uses: actions/checkout@v2
with:
path: src
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: src/.downloaded-cache
key: downloaded-cache
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/windows.yml
Expand Up @@ -44,14 +44,14 @@ jobs:
shell: msys2 {0}
run: echo PATCH=$(cygpath -wa $(command -v patch)) >> $GITHUB_ENV
if: ${{ steps.setup-msys2.outcome == 'success' }}
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: C:\vcpkg\downloads
key: ${{ runner.os }}-vcpkg-download-${{ env.OS_VER }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-vcpkg-download-${{ env.OS_VER }}-
${{ runner.os }}-vcpkg-download-
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: C:\vcpkg\installed
key: ${{ runner.os }}-vcpkg-installed-${{ matrix.os }}-${{ github.sha }}
Expand All @@ -61,7 +61,7 @@ jobs:
- name: Install libraries with vcpkg
run: |
vcpkg --triplet x64-windows install libffi libyaml openssl readline zlib
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey
key: ${{ runner.os }}-chocolatey-${{ env.OS_VER }}-${{ github.sha }}
Expand All @@ -83,7 +83,7 @@ jobs:
- uses: actions/checkout@v2
with:
path: src
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: src/.downloaded-cache
key: downloaded-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yjit-ubuntu.yml
Expand Up @@ -59,7 +59,7 @@ jobs:
- uses: actions/checkout@v2
with:
path: src
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: src/.downloaded-cache
key: downloaded-cache
Expand Down

0 comments on commit 9deacb3

Please sign in to comment.