File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 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 }}
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') }}
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments