diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d4dc5a6..614a95e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 id: cache-restore with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -25,7 +25,7 @@ jobs: cache: 'yarn' - name: Yarn Install run: yarn install - - uses: actions/cache/save@v3 + - uses: actions/cache/save@v4 id: cache-save with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }}