Skip to content

Commit 753e221

Browse files
Thegaramzimpha
andauthored
ci: fix TOB-SCREUC-6, disable cache-binary option (#83)
Co-authored-by: zimpha <[email protected]>
1 parent da9461c commit 753e221

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/contracts.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: echo "::set-output name=dir::$(yarn cache dir)"
5151

5252
- name: Cache yarn dependencies
53-
uses: actions/cache@v2
53+
uses: actions/cache@v4
5454
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
5555
with:
5656
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -60,7 +60,7 @@ jobs:
6060
6161
- name: Cache node_modules
6262
id: npm_cache
63-
uses: actions/cache@v2
63+
uses: actions/cache@v4
6464
with:
6565
path: node_modules
6666
key: node_modules-${{ hashFiles('yarn.lock') }}
@@ -109,7 +109,7 @@ jobs:
109109
run: echo "::set-output name=dir::$(yarn cache dir)"
110110

111111
- name: Cache yarn dependencies
112-
uses: actions/cache@v2
112+
uses: actions/cache@v4
113113
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
114114
with:
115115
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -119,7 +119,7 @@ jobs:
119119
120120
- name: Cache node_modules
121121
id: npm_cache
122-
uses: actions/cache@v2
122+
uses: actions/cache@v4
123123
with:
124124
path: node_modules
125125
key: node_modules-${{ hashFiles('yarn.lock') }}

.github/workflows/docker-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131

3232
- name: Set up Docker Buildx
3333
uses: docker/setup-buildx-action@v2
34+
with:
35+
cache-binary: false
3436

3537
- name: Login to Dockerhub
3638
uses: docker/login-action@v2

0 commit comments

Comments
 (0)