Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/cache from 3 to 4 #6907

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading