Skip to content

Commit 48c091d

Browse files
Bump actions/cache from 5.0.0 to 5.0.3 (#607)
Bumps [actions/cache](https://github.com/actions/cache) from 5.0.0 to 5.0.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@a783357...cdf6c1f) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a88ca63 commit 48c091d

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
@@ -111,7 +111,7 @@ jobs:
111111

112112
- name: Setup ccache
113113
id: ccache-restore
114-
uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
114+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
115115
with:
116116
key: ${{ runner.os }}-${{ runner.arch }}-ccache-${{ env.TARGET_BRANCH }}-cpack-${{ github.sha }}
117117
restore-keys: |
@@ -147,7 +147,7 @@ jobs:
147147
#
148148
- name: Save ccache
149149
if: always() && steps.ccache-restore.outputs.cache-hit != 'true'
150-
uses: actions/cache/save@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
150+
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
151151
with:
152152
key: ${{ steps.ccache-restore.outputs.cache-primary-key }}
153153
path: ${{ env.CCACHE_DIR }}
@@ -232,7 +232,7 @@ jobs:
232232

233233
- name: Setup ccache
234234
id: ccache-restore
235-
uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
235+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
236236
with:
237237
key: ${{ runner.os }}-${{ runner.arch }}-ccache-${{ env.TARGET_BRANCH }}-wheel-${{ github.sha }}
238238
restore-keys: |
@@ -265,7 +265,7 @@ jobs:
265265
#
266266
- name: Save ccache
267267
if: always() && steps.ccache-restore.outputs.cache-hit != 'true' && github.event_name == 'push'
268-
uses: actions/cache/save@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
268+
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
269269
with:
270270
key: ${{ steps.ccache-restore.outputs.cache-primary-key }}
271271
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@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
135+
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
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@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
187+
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
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@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
283+
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
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@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5.0.0
322+
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
323323
with:
324324
key: ${{ steps.ccache-restore.outputs.cache-primary-key }}
325325
path: ${{ env.CCACHE_DIR }}

0 commit comments

Comments
 (0)