Skip to content

Commit 2474195

Browse files
wsanvillefacebook-github-bot
authored andcommitted
Change actions/cache version to fix open source CI (#910)
Summary: Pull Request resolved: #910 Example failure https://github.com/facebook/redex/actions/runs/13637202785/job/38118793260 is requiring an upgrade. See supported versions at actions/cache#1510 Reviewed By: ssj933 Differential Revision: D70568733 fbshipit-source-id: bc2522b27d9de389b99088e173427133d8e3754a
1 parent 91cb31a commit 2474195

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/actions/base-build-setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ runs:
1111
steps:
1212
- name: Cache boost
1313
if: inputs.save_boost_cache == 'true'
14-
uses: actions/cache@v3.3.2
14+
uses: actions/cache@v4
1515
with:
1616
key: boost-1-71-0-v5
1717
path: /tmp/toolchain/dl_cache/boost_cache
1818
- name: Cache protobuf
1919
if: inputs.save_boost_cache == 'true'
20-
uses: actions/cache@v3.3.2
20+
uses: actions/cache@v4
2121
with:
2222
key: protobuf3-v3
2323
path: /tmp/toolchain/dl_cache/protobuf

.github/actions/setup-build-and-test-w-make-impl/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
# it's a bit murkier (looking for some merge commits).
2828
# For now leave it at that and hope that the fallback does the right thing.
2929
- name: Cache build
30-
uses: actions/cache@v3.3.2
30+
uses: actions/cache@v4
3131
with:
3232
key: v2-build-cache-${{ inputs.job_name }}.${{ inputs.setup_toolchain_extra }}.${{ inputs.configure_extra }}-${{ runner.arch }}-${{ github.ref_name }}-${{ github.sha }}
3333
path: build.tar.zstd

.github/actions/test-build-setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runs:
1212
echo "CACHE_VERSION=${CACHE_VERSION}" >> "$GITHUB_OUTPUT"
1313
shell: bash
1414
- name: Cache SDK
15-
uses: actions/cache@v3.3.2
15+
uses: actions/cache@v4
1616
with:
1717
key: v4-android-build-tools
1818
path: sdk.tar.zstd

0 commit comments

Comments
 (0)