Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

chore(deps): bump actions/cache from 3.2.3 to 3.3.2 #169

Closed
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Cache SonarCloud packages
uses: actions/cache@v3.2.3
uses: actions/cache@v3.3.2
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
Expand All @@ -33,7 +33,7 @@ jobs:
distribution: adopt
java-version: 17
- name: Cache Maven packages
uses: actions/cache@v3.2.3
uses: actions/cache@v3.3.2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
distribution: adopt

- name: Cache SonarCloud packages
uses: actions/cache@v3.2.3
uses: actions/cache@v3.3.2
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar

- name: Cache local Maven repository
uses: actions/cache@v3.2.3
uses: actions/cache@v3.3.2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down