Skip to content

Commit f4a1f4c

Browse files
build(deps): bump actions/cache from 5 to 6 (#96)
Signed-off-by: dependabot[bot] <support@github.com>
1 parent 68c7f76 commit f4a1f4c

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/auto-nightly.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ jobs:
4949
distribution: "temurin"
5050
java-version-file: ".tool-versions"
5151
- name: "Use build cache"
52-
uses: actions/cache@v5
52+
uses: actions/cache@v6
5353
timeout-minutes: 5
5454
with:
5555
key: "build-${{ hashFiles('conf/conf-full.inc.sh') }}"
5656
restore-keys: "build-"
5757
path: "cache/build"
5858
enableCrossOsArchive: true
5959
- name: "Use LFS cache"
60-
uses: actions/cache@v5
60+
uses: actions/cache@v6
6161
timeout-minutes: 5
6262
with:
6363
key: "lfs-${{ hashFiles('conf/conf-lfs.inc.sh') }}"
@@ -271,7 +271,7 @@ jobs:
271271
conf/conf-lfs.inc.sh
272272
sparse-checkout-cone-mode: false
273273
- name: "Ping build cache" # Cache expiration: 7 days
274-
uses: actions/cache/restore@v5
274+
uses: actions/cache/restore@v6
275275
timeout-minutes: 5
276276
with:
277277
key: "build-${{ hashFiles('conf/conf-full.inc.sh') }}"
@@ -280,7 +280,7 @@ jobs:
280280
enableCrossOsArchive: true
281281
lookup-only: true
282282
- name: "Ping LFS cache" # Cache expiration: 7 days
283-
uses: actions/cache/restore@v5
283+
uses: actions/cache/restore@v6
284284
timeout-minutes: 5
285285
with:
286286
key: "lfs-${{ hashFiles('conf/conf-lfs.inc.sh') }}"

.github/workflows/code-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
distribution: "temurin"
8585
java-version-file: ".tool-versions"
8686
- name: "Use Gradle wrapper cache"
87-
uses: actions/cache@v5
87+
uses: actions/cache@v6
8888
timeout-minutes: 5
8989
with:
9090
key: "gradle-wrapper-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}"

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ jobs:
4444
ruby-version: "3.4"
4545
bundler-cache: "true"
4646
- name: "Use build cache"
47-
uses: actions/cache/restore@v5
47+
uses: actions/cache/restore@v6
4848
timeout-minutes: 5
4949
with:
5050
key: "build-${{ hashFiles('conf/conf-full.inc.sh') }}"
5151
restore-keys: "build-"
5252
path: "cache/build"
5353
enableCrossOsArchive: true
5454
- name: "Use LFS cache"
55-
uses: actions/cache/restore@v5
55+
uses: actions/cache/restore@v6
5656
timeout-minutes: 5
5757
with:
5858
key: "lfs-${{ hashFiles('conf/conf-lfs.inc.sh') }}"

.github/workflows/generate-perm-xml.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@v7
2525
- name: "Use cache"
2626
id: cache-step
27-
uses: actions/cache@v5
27+
uses: actions/cache@v6
2828
timeout-minutes: 5
2929
with:
3030
key: "perms-${{ hashFiles('tools/dl-perm-list.sh') }}"
@@ -67,7 +67,7 @@ jobs:
6767
tools/dl-perm-list.sh
6868
sparse-checkout-cone-mode: false
6969
- name: "Ping cache" # Cache expiration: 7 days
70-
uses: actions/cache@v5
70+
uses: actions/cache@v6
7171
timeout-minutes: 5
7272
with:
7373
key: "perms-${{ hashFiles('tools/dl-perm-list.sh') }}"

.github/workflows/scripts-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: "Prepare cache"
4343
id: cache-action
4444
if: "${{ runner.os == 'Linux' }}"
45-
uses: actions/cache@v5
45+
uses: actions/cache@v6
4646
with:
4747
path: "cache/shells"
4848
key: "${{ env.cache-key }}-${{ runner.os }}"

0 commit comments

Comments
 (0)