Skip to content

Commit a54a6ca

Browse files
committed
chore: update actions/cache to v4
1 parent 7776299 commit a54a6ca

File tree

7 files changed

+12
-15
lines changed

7 files changed

+12
-15
lines changed

.github/build-cpp-filecoin.src.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
uses: docker/setup-buildx-action@v1
129129
- &step_docker_cache
130130
name: Cache Docker layers
131-
uses: actions/cache@v2
131+
uses: actions/cache@v4
132132
with:
133133
path: /tmp/.buildx-cache
134134
key: ${{ runner.os }}-buildx-${{env.dockertag}}

.github/workflows/asan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
submodules: 'recursive'
1818
name: checkout repo
1919
- name: cache
20-
uses: actions/cache@v1.2.0
20+
uses: actions/cache@v4
2121
env:
2222
cache-name: cache-filecoin-ffi-proofs
2323
version: v28

.github/workflows/build-cpp-filecoin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
- name: Set up Docker Buildx
128128
uses: docker/setup-buildx-action@v1
129129
- name: Cache Docker layers
130-
uses: actions/cache@v2
130+
uses: actions/cache@v4
131131
with:
132132
path: /tmp/.buildx-cache
133133
key: ${{ runner.os }}-buildx-${{env.dockertag}}

.github/workflows/ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,11 @@ jobs:
1616
matrix:
1717
# 3 jobs in total
1818
os: [ ubuntu-latest, macOS-latest ]
19-
compiler: [ {
20-
"cc": "gcc",
21-
"cxx": "g++"
22-
}, {
23-
"cc": "clang",
24-
"cxx": "clang++"
25-
} ]
19+
compiler:
20+
- cc: gcc
21+
cxx: g++
22+
- cc: clang
23+
cxx: clang++
2624
exclude:
2725
- os: macOS-latest
2826
compiler:
@@ -42,7 +40,7 @@ jobs:
4240
submodules: 'recursive'
4341
name: checkout repo
4442
- name: cache
45-
uses: actions/cache@v1.2.0
43+
uses: actions/cache@v4
4644
env:
4745
cache-name: cache-filecoin-ffi-proofs
4846
version: v28

.github/workflows/lsan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
submodules: 'recursive'
1818
name: checkout repo
1919
- name: cache
20-
uses: actions/cache@v1.2.0
20+
uses: actions/cache@v4
2121
env:
2222
cache-name: cache-filecoin-ffi-proofs
2323
version: v28

.github/workflows/tsan.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
submodules: 'recursive'
1818
name: checkout repo
1919
- name: cache
20-
uses: actions/cache@v1.2.0
20+
uses: actions/cache@v4
2121
env:
2222
cache-name: cache-filecoin-ffi-proofs
2323
version: v28
@@ -45,4 +45,3 @@ jobs:
4545
CTEST_OUTPUT_ON_FAILURE: 1
4646
TSAN_OPTIONS: "suppressions=${{ github.workspace }}/.github/workflows/tsan-ignorelist.txt"
4747
run: cmake --build build --target test
48-

.github/workflows/ubsan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
submodules: 'recursive'
1818
name: checkout repo
1919
- name: cache
20-
uses: actions/cache@v1.2.0
20+
uses: actions/cache@v4
2121
env:
2222
cache-name: cache-filecoin-ffi-proofs
2323
version: v28

0 commit comments

Comments
 (0)