From 11dec97b14732967636f6aa344cfc9e48eac9d4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 00:39:03 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/codeql-analysis.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81d4231c8e..207e95bd17 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,13 +16,13 @@ jobs: shell: bash run: echo "::set-output name=date::$(/bin/date -u "+%Y-%m")" - name: Cache Maven dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository # The cache key is changed every month to prevent unlimited growth. key: maven-cache-${{ steps.cache-key.outputs.date }} - name: Cache Yarn dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/yarn # The cache key is changed every month to prevent unlimited growth. diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f6d4e7bae0..fe0b310675 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,14 +42,14 @@ jobs: run: echo "::set-output name=date::$(/bin/date -u "+%Y-%m")" - if: matrix.language == 'java' name: Cache Maven dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository # The cache key is changed every month to prevent unlimited growth. key: maven-cache-${{ steps.cache-key.outputs.date }} - if: matrix.language == 'javascript' name: Cache Yarn dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/yarn # The cache key is changed every month to prevent unlimited growth.