Skip to content

Commit 34201c6

Browse files
Merge pull request #4087 from SwiftPackageIndex/dependabot/github_actions/gh-dependencies-02325a8da5
GitHub Actions: Bump the gh-dependencies group across 1 directory with 2 updates
2 parents 50c14b7 + d17ff01 commit 34201c6

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: sysctl -w vm.mmap_rnd_bits=28
3737

3838
- name: Checkout code
39-
uses: actions/checkout@v6
39+
uses: actions/checkout@v7
4040
with: { 'fetch-depth': 0 }
4141

4242
- name: Install unzip (for tests) and zstd (for faster caching)
@@ -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@v5
48+
uses: actions/cache/restore@v6
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@v5
59+
uses: actions/cache/save@v6
6060
with:
6161
path: .build
6262
key: "spi-debug-build-${{ runner.os }}-${{ github.event.after }}"
@@ -167,7 +167,7 @@ jobs:
167167
run: sysctl -w vm.mmap_rnd_bits=28
168168

169169
- name: Checkout code
170-
uses: actions/checkout@v6
170+
uses: actions/checkout@v7
171171
with: { 'fetch-depth': 0 }
172172

173173
- name: Install zstd (for faster caching)
@@ -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@v5
179+
uses: actions/cache/restore@v6
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@v5
194+
uses: actions/cache/save@v6
195195
with:
196196
path: .build
197197
key: "spi-release-build-${{ runner.os }}-${{ github.event.after }}"
@@ -219,7 +219,7 @@ jobs:
219219
# --health-timeout 5s
220220
# --health-retries 5
221221
# steps:
222-
# - uses: actions/checkout@v6
222+
# - uses: actions/checkout@v7
223223
# - name: Select Xcode 11.4
224224
# run: sudo xcode-select -s /Applications/Xcode_11.4.app
225225
# - name: Log Xcode version

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@v6
31+
uses: actions/checkout@v7
3232
- name: Lint Front-End
3333
run: make lint-front-end
3434
- name: Build Front-End

.github/workflows/query-performance.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
image: registry.gitlab.com/finestructure/spi-base:2.2.1
3232
steps:
3333
- name: Checkout code
34-
uses: actions/checkout@v6
34+
uses: actions/checkout@v7
3535
with: { 'fetch-depth': 0 }
3636

3737
- name: Install unzip (for tests) and zstd (for faster caching)
@@ -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@v5
43+
uses: actions/cache/restore@v6
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@v5
54+
uses: actions/cache/save@v6
5555
with:
5656
path: .build
5757
key: "spi-query-performance-build-${{ runner.os }}-${{ github.event.after }}"

.github/workflows/snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@v6
31+
uses: actions/checkout@v7
3232
with:
3333
fetch-depth: 0
3434
- name: Build Front-End

0 commit comments

Comments
 (0)