Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4 (#525)
Browse files Browse the repository at this point in the history
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](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jan 31, 2024
1 parent 2140fc5 commit 78c4ee0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

# Cache all the things
- name: Cache SonarCloud packages
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ env.SONAR_TOKEN != null && env.SONAR_TOKEN != '' && matrix.java_version == '17' }}
env:
SONAR_TOKEN: ${{ secrets.SERVICE_SONAR_TOKEN }}
Expand All @@ -42,7 +42,7 @@ jobs:
restore-keys: ${{ runner.os }}-sonar

- name: Cache Maven packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:

# Cache all the things
- name: Cache SonarCloud packages
uses: actions/cache@v3
uses: actions/cache@v4
if: ${{ env.SONAR_TOKEN != null && env.SONAR_TOKEN != ''&& matrix.node_version == '18' }}
env:
SONAR_TOKEN: ${{ secrets.UI_SONAR_TOKEN }}
Expand Down

0 comments on commit 78c4ee0

Please sign in to comment.