From 01af17622b7501883072d4399abeafbee3d3894a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 19:38:46 +0000 Subject: [PATCH] build(deps): bump actions/cache from 1 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 1 to 4. - [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/v1...v4) --- 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 560439fb3..77f841ea4 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@v4 with: path: | ~/.gradle/caches @@ -39,7 +39,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache Rush temp files - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | common/temp @@ -48,7 +48,7 @@ jobs: ${{ runner.os }}-rush- - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v4 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@v4 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@v4 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index a4608e6f6..6c73a5fa1 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@v4 with: path: | ~/.gradle/caches @@ -49,7 +49,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v4 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@v4 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@v4 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar @@ -156,7 +156,7 @@ jobs: # Cache Docker layers - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index e803d6d63..24a43cc34 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@v4 with: path: | ~/.gradle/caches @@ -35,7 +35,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache Rush temp files - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | common/temp @@ -44,7 +44,7 @@ jobs: ${{ runner.os }}-rush- - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v4 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@v4 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@v4 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar diff --git a/.github/workflows/frontend-pr.yml b/.github/workflows/frontend-pr.yml index 2a33d6bb7..344a4f8ba 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@v4 with: path: | ~/.gradle/caches @@ -39,7 +39,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache Rush temp files - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | common/temp @@ -48,7 +48,7 @@ jobs: ${{ runner.os }}-rush- - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v4 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@v4 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@v4 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index acd7f68eb..84d017200 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@v4 with: path: | common/temp @@ -48,7 +48,7 @@ jobs: ${{ runner.os }}-rush- - name: Cache NPM - uses: actions/cache@v2 + uses: actions/cache@v4 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@v4 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@v4 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..042081cb3 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@v4 with: path: | ~/.gradle/caches @@ -40,7 +40,7 @@ jobs: ${{ runner.os }}-gradle- - name: Cache Rush temp files - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | common/temp