Skip to content

Commit fd2a684

Browse files
build(deps): bump actions/cache from 5.0.5 to 6.1.0 (#617)
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.1.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@27d5ce7...55cc834) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 00bd664 commit fd2a684

4 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/cache_java.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
sdkman_path: ${{ steps.export-path.outputs.sdkman_path }}
6969
steps:
7070
- name: Cache SDKMan! AMD64
71-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
71+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
7272
with:
7373
path: sdkman
7474
key: sdkman-amd64-${{ github.run_id }}
@@ -109,7 +109,7 @@ jobs:
109109
sdkman_path: ${{ steps.export-path.outputs.sdkman_path }}
110110
steps:
111111
- name: Cache SDKMan! AARCH64
112-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
112+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
113113
with:
114114
path: sdkman
115115
key: sdkman-aarch64-${{ github.run_id }}

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ jobs:
6363
sudo mv /usr/bin/clang-format-11 /usr/bin/clang-format
6464
6565
- name: Cache Gradle Wrapper Binaries
66-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
66+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
6767
with:
6868
path: ~/.gradle/wrapper/dists
6969
key: gradle-wrapper-${{ runner.os }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
7070
restore-keys: |
7171
gradle-wrapper-${{ runner.os }}-
7272
7373
- name: Cache Gradle User Home
74-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
74+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
7575
with:
7676
path: ~/.gradle/caches
7777
key: gradle-caches-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
@@ -101,15 +101,15 @@ jobs:
101101
sudo apt-get install -y curl zip unzip binutils
102102
103103
- name: Cache Gradle Wrapper Binaries
104-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
104+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
105105
with:
106106
path: ~/.gradle/wrapper/dists
107107
key: gradle-wrapper-${{ runner.os }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
108108
restore-keys: |
109109
gradle-wrapper-${{ runner.os }}-
110110
111111
- name: Cache Gradle User Home
112-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
112+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
113113
with:
114114
path: ~/.gradle/caches
115115
key: gradle-caches-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
@@ -211,14 +211,14 @@ jobs:
211211
steps:
212212
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
213213
- name: Cache Gradle Wrapper Binaries
214-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
214+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
215215
with:
216216
path: ~/.gradle/wrapper/dists
217217
key: gradle-wrapper-${{ runner.os }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
218218
restore-keys: |
219219
gradle-wrapper-${{ runner.os }}-
220220
- name: Cache Gradle User Home
221-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
221+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
222222
with:
223223
path: ~/.gradle/caches
224224
key: gradle-caches-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2727
- name: Cache Gradle Wrapper Binaries
28-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
28+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
2929
with:
3030
path: ~/.gradle/wrapper/dists
3131
key: gradle-wrapper-${{ runner.os }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
3232
restore-keys: |
3333
gradle-wrapper-${{ runner.os }}-
3434
- name: Cache Gradle User Home
35-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
35+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3636
with:
3737
path: ~/.gradle/caches
3838
key: gradle-caches-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}

.github/workflows/test_workflow.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ jobs:
6161
if: steps.set_enabled.outputs.enabled == 'true'
6262
- name: Cache Gradle Wrapper Binaries
6363
if: steps.set_enabled.outputs.enabled == 'true'
64-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
64+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
6565
with:
6666
path: ~/.gradle/wrapper/dists
6767
key: gradle-wrapper-${{ runner.os }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
6868
restore-keys: |
6969
gradle-wrapper-${{ runner.os }}-
7070
- name: Cache Gradle User Home
7171
if: steps.set_enabled.outputs.enabled == 'true'
72-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
72+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
7373
with:
7474
path: ~/.gradle/caches
7575
key: gradle-caches-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
@@ -220,14 +220,14 @@ jobs:
220220
apk add musl-dbg
221221
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
222222
- name: Cache Gradle Wrapper Binaries
223-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
223+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
224224
with:
225225
path: ~/.gradle/wrapper/dists
226226
key: gradle-wrapper-${{ runner.os }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
227227
restore-keys: |
228228
gradle-wrapper-${{ runner.os }}-
229229
- name: Cache Gradle User Home
230-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
230+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
231231
with:
232232
path: ~/.gradle/caches
233233
key: gradle-caches-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
@@ -361,15 +361,15 @@ jobs:
361361
if: steps.set_enabled.outputs.enabled == 'true'
362362
- name: Cache Gradle Wrapper Binaries
363363
if: steps.set_enabled.outputs.enabled == 'true'
364-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
364+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
365365
with:
366366
path: ~/.gradle/wrapper/dists
367367
key: gradle-wrapper-${{ runner.os }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
368368
restore-keys: |
369369
gradle-wrapper-${{ runner.os }}-
370370
- name: Cache Gradle User Home
371371
if: steps.set_enabled.outputs.enabled == 'true'
372-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
372+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
373373
with:
374374
path: ~/.gradle/caches
375375
key: gradle-caches-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
@@ -532,14 +532,14 @@ jobs:
532532
steps:
533533
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
534534
- name: Cache Gradle Wrapper Binaries
535-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
535+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
536536
with:
537537
path: ~/.gradle/wrapper/dists
538538
key: gradle-wrapper-${{ runner.os }}-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
539539
restore-keys: |
540540
gradle-wrapper-${{ runner.os }}-
541541
- name: Cache Gradle User Home
542-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
542+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
543543
with:
544544
path: ~/.gradle/caches
545545
key: gradle-caches-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}

0 commit comments

Comments
 (0)