Skip to content

Commit

Permalink
Merge pull request #2045 from Netflix/dependabot/github_actions/actio…
Browse files Browse the repository at this point in the history
…ns/cache-4.1.2

Bump actions/cache from 4.1.1 to 4.1.2
  • Loading branch information
paulbakker authored Nov 6, 2024
2 parents f17452b + b857e94 commit a86ed0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@ jobs:
python -m pip install --upgrade pip
if [ -f scripts/requirements.txt ]; then pip install -r scripts/requirements.txt; fi
- uses: actions/cache@v4.1.1
- uses: actions/cache@v4.1.2
id: gradle-wrapper-cache
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradlewrapper-${{ hashFiles('gradle/wrapper/*') }}
restore-keys: ${{ runner.os }}-gradlewrapper-

- name: Cache Gradle packages
uses: actions/cache@v4.1.1
uses: actions/cache@v4.1.2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle

- name: Maven cache
uses: actions/cache@v4.1.1
uses: actions/cache@v4.1.2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nebula-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
with:
distribution: 'zulu'
java-version: 8
- uses: actions/cache@v4.1.1
- uses: actions/cache@v4.1.2
id: gradle-cache
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
restore-keys: |
- ${{ runner.os }}-gradle-
- uses: actions/cache@v4.1.1
- uses: actions/cache@v4.1.2
id: gradle-wrapper-cache
with:
path: ~/.gradle/wrapper
Expand Down

0 comments on commit a86ed0f

Please sign in to comment.