From 727919db9bb3e54e02966c51b45de5b0ac721c48 Mon Sep 17 00:00:00 2001 From: JDMathew Date: Tue, 12 Jul 2022 15:54:57 +0100 Subject: [PATCH] Update workflow action cache version --- .github/workflows/demo-app.yml | 2 +- .github/workflows/docs-website.yml | 2 +- .github/workflows/run-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/demo-app.yml b/.github/workflows/demo-app.yml index a8d99934..ad7b3145 100644 --- a/.github/workflows/demo-app.yml +++ b/.github/workflows/demo-app.yml @@ -16,7 +16,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - 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/docs-website.yml b/.github/workflows/docs-website.yml index 7a71300e..088337a3 100644 --- a/.github/workflows/docs-website.yml +++ b/.github/workflows/docs-website.yml @@ -26,7 +26,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - 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/run-tests.yml b/.github/workflows/run-tests.yml index 40af20af..95878832 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,7 +16,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - 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 }}