Skip to content

Commit 275a895

Browse files
chore(deps): bump actions/cache from 5.0.4 to 5.0.5 (#6218)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 912ea57 commit 275a895

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/generic-plugins.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
shell: bash
5454

5555
- name: Save binary to cache
56-
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
56+
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
5757
with:
5858
path: rust-plugins/target/release/
5959
key: ${{ github.sha }}-${{ github.run_id }}-build-generic-plugins
@@ -115,7 +115,7 @@ jobs:
115115
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
116116

117117
- name: Restore binary from cache
118-
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
118+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
119119
with:
120120
path: rust-plugins/target/release/
121121
key: ${{ github.sha }}-${{ github.run_id }}-build-generic-plugins
@@ -138,7 +138,7 @@ jobs:
138138
stability: ${{ needs.get-environment.outputs.stability }}
139139

140140
- name: Save to cache
141-
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
141+
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
142142
with:
143143
path: ./*.${{ matrix.package_extension }}
144144
key: ${{ github.sha }}-${{ github.run_id }}-${{ matrix.package_extension }}-${{ matrix.distrib }}
@@ -164,7 +164,7 @@ jobs:
164164
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
165165

166166
- name: Restore binary from cache
167-
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
167+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
168168
with:
169169
path: rust-plugins/target/release/
170170
key: ${{ github.sha }}-${{ github.run_id }}-build-generic-plugins

.github/workflows/perl-filesys-smbclient.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
106106
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
107107

108-
- uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
108+
- uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
109109
with:
110110
path: ./*.rpm
111111
key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }}

.github/workflows/plink.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
100100
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
101101

102-
- uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
102+
- uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
103103
with:
104104
path: ./*.rpm
105105
key: unsigned-${{ github.sha }}-${{ github.run_id }}-rpm-${{ matrix.distrib }}

.github/workflows/plugins-robot-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ jobs:
6969

7070
- name: Get the cached plugins
7171
if: ${{ inputs.get-packages == 'True' }}
72-
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
72+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
7373
with:
7474
path: ./*.${{ inputs.package-extension }}
7575
key: ${{ inputs.packages-cache-key }}
7676
fail-on-cache-miss: true
7777

7878
- name: Get the cached plugins.json
79-
uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
79+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
8080
with:
8181
path: ./plugins.json
8282
key: ${{ inputs.plugins-json-cache-key }}

.github/workflows/plugins.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ jobs:
251251
- name: Checkout sources
252252
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
253253

254-
- uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
254+
- uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
255255
with:
256256
path: ./plugins.json
257257
key: plugins-${{ github.sha }}-${{ github.run_id }}
@@ -326,13 +326,13 @@ jobs:
326326
- name: Checkout sources
327327
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
328328

329-
- uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
329+
- uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
330330
with:
331331
path: ./build/
332332
key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }}
333333
fail-on-cache-miss: true
334334

335-
- uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
335+
- uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
336336
with:
337337
path: ./plugins.json
338338
key: plugins-${{ github.sha }}-${{ github.run_id }}
@@ -487,7 +487,7 @@ jobs:
487487
- name: Checkout sources
488488
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
489489

490-
- uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
490+
- uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
491491
with:
492492
path: ./build/
493493
key: fatpacked-plugins-${{ github.sha }}-${{ github.run_id }}

0 commit comments

Comments
 (0)