Skip to content

Commit

Permalink
Merge pull request #3349 from yurake/renovate/actions-cache-3.x
Browse files Browse the repository at this point in the history
chore(deps): update dependency actions/cache to v3.3.3
  • Loading branch information
renovate[bot] authored Jun 22, 2024
2 parents c3cc09c + 86dc1f8 commit f5c0475
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: docker/[email protected]

- name: Cache Docker layers
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: /tmp/.buildx-cache
key: ${{ github.ref }}-${{ github.sha }}
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/java-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:
languages: java

- name: Cache SonarCloud packages
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar-parent-pom
restore-keys: ${{ runner.os }}-sonar-parent-pom
- name: Cache local Maven repository
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-parent-pom-${{ hashFiles('**/parent-pom/pom.xml') }}
Expand All @@ -56,13 +56,13 @@ jobs:
run: ./mvnw -B deploy --settings ../.m2/settings.xml

- name: Cache SonarCloud packages
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar-webapp-service
restore-keys: ${{ runner.os }}-sonar-webapp-service
- name: Cache local Maven repository
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-webapp-service-${{ hashFiles('**/webapp-service/pom.xml') }}
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Cache Docker layers
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: /tmp/.buildx-cache
key: ${{ github.ref }}-${{ github.sha }}
Expand All @@ -168,13 +168,13 @@ jobs:
fi
- name: Cache SonarCloud packages
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar-${{ matrix.application }}
restore-keys: ${{ runner.os }}-sonar-${{ matrix.application }}
- name: Cache local Maven repository
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ matrix.application }}-${{ hashFiles('**/${{ matrix.application }}/pom.xml') }}
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Cache Docker layers
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: /tmp/.buildx-cache
key: ${{ github.ref }}-${{ github.sha }}
Expand All @@ -283,13 +283,13 @@ jobs:
fi
- name: Cache SonarCloud packages
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar-${{ matrix.application }}
restore-keys: ${{ runner.os }}-sonar-${{ matrix.application }}
- name: Cache local Maven repository
uses: actions/[email protected].1
uses: actions/[email protected].3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ matrix.application }}-${{ hashFiles('**/${{ matrix.application }}/pom.xml') }}
Expand Down

0 comments on commit f5c0475

Please sign in to comment.