diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa710f45d..dd072fadc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Cache yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/deploy-main.yml b/.github/workflows/deploy-main.yml index 9f9afefde..0d87e2ec9 100644 --- a/.github/workflows/deploy-main.yml +++ b/.github/workflows/deploy-main.yml @@ -21,7 +21,7 @@ jobs: run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Cache yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/deploy-pr.yml b/.github/workflows/deploy-pr.yml index 1b70e9ebd..7471c576b 100644 --- a/.github/workflows/deploy-pr.yml +++ b/.github/workflows/deploy-pr.yml @@ -21,7 +21,7 @@ jobs: run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Cache yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index c390578d1..3c8af5083 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v3 - name: Cache build - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.0.1 id: build-cache with: path: .next @@ -31,7 +31,7 @@ jobs: run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Cache yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: yarn-cache if: steps.build-cache.outputs.cache-hit != 'true' with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5ca24e393..327c480e8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,7 +23,7 @@ jobs: run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Cache yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -51,7 +51,7 @@ jobs: run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Cache yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }}