Skip to content

Commit 7bd0c7f

Browse files
Bump actions/cache from 4.2.4 to 4.3.0 (#564)
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.4 to 4.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0400d5f...0057852) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 619e232 commit 7bd0c7f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/mac.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103

104104
- name: Setup ccache
105105
id: ccache-restore
106-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
106+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
107107
with:
108108
key: ${{ runner.os }}-${{ runner.arch }}-ccache-${{ env.TARGET_BRANCH }}-cpack-${{ github.sha }}
109109
restore-keys: |
@@ -139,7 +139,7 @@ jobs:
139139
#
140140
- name: Save ccache
141141
if: always() && steps.ccache-restore.outputs.cache-hit != 'true'
142-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
142+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
143143
with:
144144
key: ${{ steps.ccache-restore.outputs.cache-primary-key }}
145145
path: ${{ env.CCACHE_DIR }}
@@ -224,7 +224,7 @@ jobs:
224224

225225
- name: Setup ccache
226226
id: ccache-restore
227-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
227+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
228228
with:
229229
key: ${{ runner.os }}-${{ runner.arch }}-ccache-${{ env.TARGET_BRANCH }}-wheel-${{ github.sha }}
230230
restore-keys: |
@@ -258,7 +258,7 @@ jobs:
258258
#
259259
- name: Save ccache
260260
if: always() && steps.ccache-restore.outputs.cache-hit != 'true' && github.event_name == 'push'
261-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
261+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
262262
with:
263263
key: ${{ steps.ccache-restore.outputs.cache-primary-key }}
264264
path: ${{ env.CCACHE_DIR }}

.github/workflows/windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
133133
- name: Setup ccache
134134
id: ccache-restore
135-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
135+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
136136
with:
137137
key: ${{ runner.os }}-${{ runner.arch }}-ccache-${{ env.TARGET_BRANCH }}-cpack-${{ github.sha }}
138138
restore-keys: |
@@ -184,7 +184,7 @@ jobs:
184184

185185
- name: Save ccache
186186
if: always() && steps.ccache-restore.outputs.cache-hit != 'true' && github.event_name == 'push'
187-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
187+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
188188
with:
189189
key: ${{ steps.ccache-restore.outputs.cache-primary-key }}
190190
path: ${{ env.CCACHE_DIR }}
@@ -280,7 +280,7 @@ jobs:
280280
281281
- name: Setup ccache
282282
id: ccache-restore
283-
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
283+
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
284284
with:
285285
key: ${{ runner.os }}-${{ runner.arch }}-ccache-${{ env.TARGET_BRANCH }}-wheel-${{ github.sha }}
286286
restore-keys: |
@@ -319,7 +319,7 @@ jobs:
319319

320320
- name: Save ccache
321321
if: always() && steps.ccache-restore.outputs.cache-hit != 'true' && github.event_name == 'push'
322-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
322+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
323323
with:
324324
key: ${{ steps.ccache-restore.outputs.cache-primary-key }}
325325
path: ${{ env.CCACHE_DIR }}

0 commit comments

Comments
 (0)