From 575ca8396003f97b20c8dcc7f3ec92107dbb69b3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Feb 2023 17:20:51 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [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) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/analyse-pr.yml | 2 +- .github/workflows/check-formatting.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/run-tests.yml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/analyse-pr.yml b/.github/workflows/analyse-pr.yml index c21a0b26dff5..2dcc0e7aaf0d 100644 --- a/.github/workflows/analyse-pr.yml +++ b/.github/workflows/analyse-pr.yml @@ -28,7 +28,7 @@ jobs: java-version: 11 - name: Cache maven artifacts - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml') }} diff --git a/.github/workflows/check-formatting.yml b/.github/workflows/check-formatting.yml index b2e982e7de8f..bfed11cfc936 100644 --- a/.github/workflows/check-formatting.yml +++ b/.github/workflows/check-formatting.yml @@ -13,7 +13,7 @@ jobs: java-version: 11 - name: Cache maven artifacts - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml') }} diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index c9b3260ee893..c406f01b14c4 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -40,7 +40,7 @@ jobs: if: ${{ github.event_name == 'pull_request' }} - name: Cache maven artifacts - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml') }} diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 2b43571d74a3..8bcf6141b12d 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -15,7 +15,7 @@ jobs: java-version: 11 - name: Cache maven artifacts - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml') }} @@ -41,7 +41,7 @@ jobs: java-version: 11 - name: Cache maven artifacts - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('pom.xml') }}