Skip to content

Commit

Permalink
Bump actions/cache from 3.3.3 to 4.0.0 (#463)
Browse files Browse the repository at this point in the history
* Bump actions/cache from 3.3.3 to 4.0.0

Bumps [actions/cache](https://github.com/actions/cache) from 3.3.3 to 4.0.0.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3.3.3...v4.0.0)

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

Signed-off-by: dependabot[bot] <support@github.com>

* Trigger notification

* Adds a flag to make sonar working

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Fabio Borriello <fborriello@expediagroup.com>
  • Loading branch information
dependabot[bot] and Fabio Borriello committed Jan 25, 2024
1 parent 2e851bf commit 9877374
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/github-default-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: "Cache Maven repository"
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: $HOME/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand All @@ -32,7 +32,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: "Cache Maven repository"
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: $HOME/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
security-events: write
steps:
- name: "Cache Maven repository"
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: $HOME/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/github-default-jdk11-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: "Cache Maven repository"
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: $HOME/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand All @@ -32,7 +32,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: "Cache Maven repository"
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: $HOME/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
security-events: write
steps:
- name: "Cache Maven repository"
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: $HOME/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-jdk11-release-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: "Cache Maven repository"
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: $HOME/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github-release-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: "Cache Maven repository"
uses: actions/cache@v3.3.3
uses: actions/cache@v4.0.0
with:
path: $HOME/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
<jacoco.branchRatio>0.89</jacoco.branchRatio>
<jacoco.complexityRatio>0.91</jacoco.complexityRatio>
<jacoco.lineRatio>0.98</jacoco.lineRatio>
<sonar.coverage.exclusions>**/AbstractTransformer.*,**/model/*,**/constant/*,**/error/*,**/annotation/*
</sonar.coverage.exclusions>
<sonar.coverage.exclusions>**/AbstractTransformer.*,**/model/*,**/constant/*,**/error/*,**/annotation/*</sonar.coverage.exclusions>
<sonar.scanner.force-deprecated-java-version>true</sonar.scanner.force-deprecated-java-version>
<!-- Required for coverall jdk >= 9 compatibility -->
<jaxb-api.version>2.3.1</jaxb-api.version>
<!-- site properties -->
Expand Down

0 comments on commit 9877374

Please sign in to comment.