diff --git a/.github/workflows/config-check.yaml b/.github/workflows/config-check.yaml index f2fd4b0..c889870 100644 --- a/.github/workflows/config-check.yaml +++ b/.github/workflows/config-check.yaml @@ -40,7 +40,7 @@ jobs: key: "${{ env.key }}" - name: "Cache extensions" - uses: "actions/cache@v2" + uses: actions/cache@v3 with: path: "${{ steps.cache-env.outputs.dir }}" key: "${{ steps.cache-env.outputs.key }}" diff --git a/.github/workflows/license-update.yml b/.github/workflows/license-update.yml index 3f7c007..e5c1d86 100644 --- a/.github/workflows/license-update.yml +++ b/.github/workflows/license-update.yml @@ -42,7 +42,7 @@ jobs: key: "${{ env.key }}" - name: "Cache extensions" - uses: "actions/cache@v2" + uses: actions/cache@v3 with: path: "${{ steps.cache-env.outputs.dir }}" key: "${{ steps.cache-env.outputs.key }}" diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml index ab003c1..473d79c 100644 --- a/.github/workflows/markdown-lint.yml +++ b/.github/workflows/markdown-lint.yml @@ -46,7 +46,7 @@ jobs: id: "yarn-cache-dir-path" run: "echo '::set-output name=dir::$(yarn config get cacheFolder)'" - - uses: "actions/cache@v2" + - uses: actions/cache@v3 id: "yarn-cache" # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: "${{ steps.yarn-cache-dir-path.outputs.dir }}" diff --git a/.github/workflows/semantic-release.yml b/.github/workflows/semantic-release.yml index d61363b..97bd971 100644 --- a/.github/workflows/semantic-release.yml +++ b/.github/workflows/semantic-release.yml @@ -48,7 +48,7 @@ jobs: key: "${{ env.key }}" - name: "Cache extensions" - uses: "actions/cache@v2" + uses: actions/cache@v3 with: path: "${{ steps.cache-env.outputs.dir }}" key: "${{ steps.cache-env.outputs.key }}"