Skip to content

Commit 0fa33f6

Browse files
GitHub Actions: Bump actions/cache in the gh-dependencies group
Bumps the gh-dependencies group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 29e6305 commit 0fa33f6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Restore .build
4646
if: ${{ !(github.run_attempt > 1) }} # Because maybe the cache is causing issues
4747
id: "restore-cache"
48-
uses: actions/cache/restore@v4
48+
uses: actions/cache/restore@v5
4949
with:
5050
path: .build
5151
key: "spi-debug-build-${{ runner.os }}-${{ github.event.after }}"
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: Cache .build
5858
if: steps.restore-cache.outputs.cache-hit != 'true'
59-
uses: actions/cache/save@v4
59+
uses: actions/cache/save@v5
6060
with:
6161
path: .build
6262
key: "spi-debug-build-${{ runner.os }}-${{ github.event.after }}"
@@ -176,7 +176,7 @@ jobs:
176176
- name: Restore .build
177177
if: ${{ !(github.run_attempt > 1) }} # Because maybe the cache is causing issues
178178
id: "restore-cache"
179-
uses: actions/cache/restore@v4
179+
uses: actions/cache/restore@v5
180180
with:
181181
path: .build
182182
key: "spi-release-build-${{ runner.os }}-${{ github.event.after }}"
@@ -191,7 +191,7 @@ jobs:
191191
192192
- name: Cache .build
193193
if: steps.restore-cache.outputs.cache-hit != 'true'
194-
uses: actions/cache/save@v4
194+
uses: actions/cache/save@v5
195195
with:
196196
path: .build
197197
key: "spi-release-build-${{ runner.os }}-${{ github.event.after }}"

.github/workflows/query-performance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Restore .build
4141
if: ${{ !(github.run_attempt > 1) }} # Because maybe the cache is causing issues
4242
id: "restore-cache"
43-
uses: actions/cache/restore@v4
43+
uses: actions/cache/restore@v5
4444
with:
4545
path: .build
4646
key: "spi-query-performance-build-${{ runner.os }}-${{ github.event.after }}"
@@ -51,7 +51,7 @@ jobs:
5151

5252
- name: Cache .build
5353
if: steps.restore-cache.outputs.cache-hit != 'true'
54-
uses: actions/cache/save@v4
54+
uses: actions/cache/save@v5
5555
with:
5656
path: .build
5757
key: "spi-query-performance-build-${{ runner.os }}-${{ github.event.after }}"

0 commit comments

Comments
 (0)