Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/format/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
java-version: '21'
distribution: 'temurin'
- name: Cache Maven packages
uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b
uses: actions/cache@565629816435f6c0b50676926c9b05c254113c0c
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles(format('{0}/**/pom.xml', inputs.path)) }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/javaci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
java-version: '21'
distribution: 'temurin'
- name: Cache Maven packages
uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b
uses: actions/cache@565629816435f6c0b50676926c9b05c254113c0c
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand All @@ -53,7 +53,7 @@ jobs:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- name: Cache Maven packages
uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b
uses: actions/cache@565629816435f6c0b50676926c9b05c254113c0c
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
java-version: 17
distribution: 'zulu'
- name: Cache SonarQube Cloud packages
uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b
uses: actions/cache@565629816435f6c0b50676926c9b05c254113c0c
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b
uses: actions/cache@565629816435f6c0b50676926c9b05c254113c0c
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down