Skip to content

Commit 0b719e8

Browse files
committed
Stop using actions/cache@v4
To avoid the error "Cannot open: File exists" cf. https://github.com/orgs/community/discussions/58174 actions/setup-go v4 or later has its own caching mechanism, so we don't need actions/cache. Signed-off-by: Takeshi Arabiki <takeshi.arabiki@datachain.jp>
1 parent 64eb248 commit 0b719e8

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,6 @@ jobs:
1919
with:
2020
go-version: 1.21
2121
id: go
22-
- uses: actions/cache@v4
23-
with:
24-
path: |
25-
~/.cache/go-build
26-
~/go/pkg/mod
27-
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
28-
restore-keys: |
29-
${{ runner.os }}-go-
3022
- name: Run Unit test
3123
run: make test
3224
- name: Build

0 commit comments

Comments
 (0)