From 24a864cadacb5a158c6a285d37ee0c772f7ea6a2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Jun 2024 17:36:16 +0000 Subject: [PATCH] Bump the dependencies group with 1 update Bumps the dependencies group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/maven-build.yml | 6 +++--- .github/workflows/maven-deploy.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml index 293ae57..21ce57d 100644 --- a/.github/workflows/maven-build.yml +++ b/.github/workflows/maven-build.yml @@ -25,14 +25,14 @@ jobs: java-version: 11 - name: Cache maven repository - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-maven - name: Restore CVD Database from Cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: | ~/.m2/repository/org/owasp/dependency-check-data @@ -47,7 +47,7 @@ jobs: mvn -B -DnvdApiDelay=6000 --settings maven-ci-settings.xml org.owasp:dependency-check-maven:update-only - name: Save CVD Database to Cache - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: | ~/.m2/repository/org/owasp/dependency-check-data diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index e4bef08..9153425 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -36,14 +36,14 @@ jobs: java-version: 11 - name: Cache maven repository - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-maven - name: Restore CVD Database from Cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: path: | ~/.m2/repository/org/owasp/dependency-check-data @@ -58,7 +58,7 @@ jobs: mvn -B -DnvdApiDelay=6000 --settings maven-ci-settings.xml org.owasp:dependency-check-maven:update-only - name: Save CVD Database to Cache - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: path: | ~/.m2/repository/org/owasp/dependency-check-data