Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
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] <support@github.com>
  • Loading branch information
dependabot[bot] authored and AJenbo committed Jan 23, 2024
1 parent 51ab010 commit d24bfcc
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
cache: gradle

- name: Cache CMake build folder
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: android-project/app/.cxx
key: ${{ github.workflow }}-v4-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Linux_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
--slave /usr/bin/ld.lld ld.lld /usr/bin/ld.lld-18
- name: Cache CMake build folder
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: build
key: ${{ github.workflow }}-v6-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Linux_x86.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
--slave /usr/bin/g++ g++ /usr/bin/g++-13
- name: Cache CMake build folder
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: build
key: ${{ github.workflow }}-v5-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Linux_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: Packaging/nix/debian-host-prep.sh --no-gcc

- name: Cache CMake build folder
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: build
key: ${{ github.workflow }}-v5-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Linux_x86_64_SDL1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get install -y cmake file g++ git libfmt-dev libsdl1.2-dev libsodium-dev libpng-dev libbz2-dev rpm smpq
- name: Cache CMake build folder
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: build
key: ${{ github.workflow }}-v2-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Linux_x86_64_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo apt-get update -y
sudo apt-get install -y cmake curl g++ git lcov libgtest-dev libgmock-dev libfmt-dev libsdl2-dev libsodium-dev libpng-dev libbz2-dev wget
- name: Cache CMake build folder
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: build
key: ${{ github.workflow }}-v1-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/iOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
fetch-depth: 0

- name: Cache CMake build folder
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: build
key: ${{ github.workflow }}-v3-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macOS_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: brew bundle install

- name: Cache CMake build folder
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: build
key: ${{ github.workflow }}-v1-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/s390x_qemu_big_endian_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fetch-depth: 0

- name: Cache .ccache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .ccache
key: ${{ github.workflow }}-v1-${{ github.sha }}
Expand Down

0 comments on commit d24bfcc

Please sign in to comment.