From e45d250b0d0e9b88e9593d0d25dbfa9c221f4993 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Wed, 31 May 2023 13:49:24 +0200 Subject: [PATCH] fix(tracker): upgrade workflow/cache --- .github/workflows/ui-tests.js.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ui-tests.js.yml b/.github/workflows/ui-tests.js.yml index 026bd736b..c7b2f093f 100644 --- a/.github/workflows/ui-tests.js.yml +++ b/.github/workflows/ui-tests.js.yml @@ -35,7 +35,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Cache tracker modules - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: tracker/tracker/node_modules key: ${{ runner.OS }}-test_tracker_build-${{ hashFiles('**/yarn.lock') }} @@ -77,7 +77,7 @@ jobs: npx wait-on http://localhost:3000 cd ../../frontend - name: Cache node modules - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: frontend/node_modules key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}