Skip to content
Merged
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/workflows/build-ratis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
repository: ${{ inputs.repo }}
ref: ${{ inputs.ref }}
- name: Cache for maven dependencies
uses: actions/cache@v5.0.4
uses: actions/cache@v5.0.5
with:
path: |
~/.m2/repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:

- name: Cache for NPM dependencies
if: ${{ inputs.needs-npm-cache }}
uses: actions/cache@v5.0.4
uses: actions/cache@v5.0.5
with:
path: |
~/.pnpm-store
Expand All @@ -174,7 +174,7 @@ jobs:

- name: Cache for Maven dependencies
if: ${{ inputs.needs-maven-cache }}
uses: actions/cache/restore@v5.0.4
uses: actions/cache/restore@v5.0.5
with:
path: |
~/.m2/repository/*/*/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ jobs:
fetch-depth: 0
ref: ${{ needs.build-info.outputs.sha }}
- name: Cache for maven dependencies
uses: actions/cache/restore@v5.0.4
uses: actions/cache/restore@v5.0.5
with:
path: |
~/.m2/repository/*/*/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/intermittent-test-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
with:
ref: ${{ github.event.inputs.ref }}
- name: Cache for maven dependencies
uses: actions/cache/restore@v5.0.4
uses: actions/cache/restore@v5.0.5
with:
path: |
~/.m2/repository/*/*/*
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
with:
ref: ${{ github.event.inputs.ref }}
- name: Cache for maven dependencies
uses: actions/cache/restore@v5.0.4
uses: actions/cache/restore@v5.0.5
with:
path: |
~/.m2/repository/*/*/*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/populate-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Restore cache for Maven dependencies
id: restore-cache
uses: actions/cache/restore@v5.0.4
uses: actions/cache/restore@v5.0.5
with:
path: |
~/.m2/repository/*/*/*
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Restore NodeJS tarballs
id: restore-nodejs
if: steps.restore-cache.outputs.cache-hit != 'true'
uses: actions/cache@v5.0.4
uses: actions/cache@v5.0.5
with:
path: ~/.m2/repository/com/github/eirslett/node
key: nodejs-${{ steps.nodejs-version.outputs.nodejs-version }}
Expand All @@ -85,7 +85,7 @@ jobs:

- name: Save cache for Maven dependencies
if: steps.restore-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v5.0.4
uses: actions/cache/save@v5.0.5
with:
path: |
~/.m2/repository/*/*/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/repeat-acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
with:
ref: ${{ github.event.inputs.ref }}
- name: Cache for npm dependencies
uses: actions/cache@v5.0.4
uses: actions/cache@v5.0.5
with:
path: |
~/.pnpm-store
Expand All @@ -94,7 +94,7 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-
- name: Cache for maven dependencies
uses: actions/cache/restore@v5.0.4
uses: actions/cache/restore@v5.0.5
with:
path: |
~/.m2/repository/*/*/*
Expand Down
Loading