From fc525d737c2ea130e2db6c788e97eb5a8a7a9e4c Mon Sep 17 00:00:00 2001 From: p-sw Date: Fri, 14 Jun 2024 21:39:45 +0900 Subject: [PATCH] fix: cache from manual path instead of deprecated command --- .github/workflows/lint.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index acc0df3..6847218 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,13 +17,10 @@ jobs: - name: Enable Corepack run: | corepack enable - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Restore cache uses: actions/cache@v4 with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + path: .yarn/cache key: ${{ runner.os }}-ui-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-ui- @@ -49,13 +46,10 @@ jobs: - name: Enable Corepack run: | corepack enable - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Restore cache uses: actions/cache@v4 with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + path: .yarn/cache key: ${{ runner.os }}-ui-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-ui-