From 44d7274db766845808d5218ee876e5aab970b532 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 May 2022 01:26:33 +0000 Subject: [PATCH] build(deps): bump actions/cache from 2 to 3.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v2...v3.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/backend-pr.yml | 10 +++++----- .github/workflows/backend.yml | 10 +++++----- .github/workflows/development.yml | 10 +++++----- .github/workflows/frontend-pr.yml | 10 +++++----- .github/workflows/frontend.yml | 8 ++++---- .github/workflows/release.yml | 4 ++-- 6 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/backend-pr.yml b/.github/workflows/backend-pr.yml index 07993a1ed..33765a034 100644 --- a/.github/workflows/backend-pr.yml +++ b/.github/workflows/backend-pr.yml @@ -29,7 +29,7 @@ jobs: # Caching - name: Cache Gradle deps - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.gradle/caches @@ -39,7 +39,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache Rush temp files - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | common/temp @@ -48,7 +48,7 @@ jobs: ${{ runner.os }}-rush- - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -59,7 +59,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Yarn - 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 }} @@ -67,7 +67,7 @@ jobs: restore-keys: | ${{ runner.os }}-yarn- - name: Cache SonarCloud packages - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index bf22f333c..07f105643 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -39,7 +39,7 @@ jobs: # Caching - name: Cache Gradle deps - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.gradle/caches @@ -49,7 +49,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -60,7 +60,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Yarn - 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 }} @@ -68,7 +68,7 @@ jobs: restore-keys: | ${{ runner.os }}-yarn- - name: Cache SonarCloud packages - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar @@ -152,7 +152,7 @@ jobs: # Cache Docker layers - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index 7d12b7454..dda2c442a 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -25,7 +25,7 @@ jobs: # Caching - name: Cache Gradle deps - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.gradle/caches @@ -35,7 +35,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache Rush temp files - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | common/temp @@ -44,7 +44,7 @@ jobs: ${{ runner.os }}-rush- - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -55,7 +55,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Yarn - 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 }} @@ -63,7 +63,7 @@ jobs: restore-keys: | ${{ runner.os }}-yarn- - name: Cache SonarCloud packages - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar diff --git a/.github/workflows/frontend-pr.yml b/.github/workflows/frontend-pr.yml index 2a33d6bb7..e2b1da58a 100644 --- a/.github/workflows/frontend-pr.yml +++ b/.github/workflows/frontend-pr.yml @@ -29,7 +29,7 @@ jobs: # Caching - name: Cache Gradle deps - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.gradle/caches @@ -39,7 +39,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache Rush temp files - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | common/temp @@ -48,7 +48,7 @@ jobs: ${{ runner.os }}-rush- - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -59,7 +59,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Yarn - 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 }} @@ -67,7 +67,7 @@ jobs: restore-keys: | ${{ runner.os }}-yarn- - name: Cache SonarCloud packages - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index acd7f68eb..326f63672 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -39,7 +39,7 @@ jobs: # Caching - name: Cache Rush temp files - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | common/temp @@ -48,7 +48,7 @@ jobs: ${{ runner.os }}-rush- - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -59,7 +59,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - name: Cache Yarn - 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 }} @@ -103,7 +103,7 @@ jobs: # Cache Docker layers - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a316ab5e0..01b666843 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,7 +30,7 @@ jobs: node-version: '14' - name: Cache Gradle deps - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.gradle/caches @@ -40,7 +40,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache Rush temp files - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | common/temp