From 6e930efe63cf1ea1f6710d09c051ac72cc1a1133 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2024 06:43:51 +0000 Subject: [PATCH] Build(deps): Bump actions/cache from 3 to 4 (#384) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/sonar-analysis.yml | 4 ++-- .github/workflows/tests.yml | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f06c6c43..fde699e0 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -57,7 +57,7 @@ jobs: # Prefix the list here with "+" to use these queries and those in the config file. # queries: ./path/to/local/query, your-org/your-repo/queries@main - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: # be careful not to include ~/.m2/settings.xml which contains credentials path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 54e37aed..6f35ebba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: distribution: 'temurin' java-version: 21 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: # be careful not to include ~/.m2/settings.xml which contains credentials path: | diff --git a/.github/workflows/sonar-analysis.yml b/.github/workflows/sonar-analysis.yml index ed0d9a6e..ff4d47aa 100644 --- a/.github/workflows/sonar-analysis.yml +++ b/.github/workflows/sonar-analysis.yml @@ -40,13 +40,13 @@ jobs: run: sudo apt-get update && sudo apt-get install -y ffmpeg && ffmpeg -version - name: Cache SonarCloud packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: # be careful not to include ~/.m2/settings.xml which contains credentials path: | diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index daca7665..cf2618ad 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,7 +41,7 @@ jobs: java-version: 21 - name: Cache Maven Packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: # be careful not to include ~/.m2/settings.xml which contains credentials path: | @@ -51,7 +51,7 @@ jobs: restore-keys: ${{ runner.os }}-m2 - name: Cache Test Artifacts - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | .artifacts @@ -88,7 +88,7 @@ jobs: - name: Set up RANDOM GPG key run: gpg --quick-generate-key --batch --passphrase '' test42 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: # be careful not to include ~/.m2/settings.xml which contains credentials path: |