Skip to content

Commit dba0a41

Browse files
fix: remove deprecated cache action (#81)
* fix: remove deprecated cache action * replace caching action * fix: add key
1 parent 26e3217 commit dba0a41

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.gflows/libs/integration-tests-legacy-steps.lib.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,14 @@
2323
service-under-test: #@ environment.service_under_test.name
2424
image-under-test: #@ tagging.candidate_image(registry, environment.service_under_test.image)
2525

26-
- uses: c-hive/gha-yarn-cache@v2
26+
- uses: actions/cache@v4
27+
with:
28+
path: |
29+
**/node_modules
30+
**/.cache/yarn
31+
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
32+
restore-keys: |
33+
${{ runner.os }}-yarn-
2734
- name: Install yarn
2835
run: yarn install
2936
#@ for test_case in test_suites.tests:

0 commit comments

Comments
 (0)