Skip to content

Commit 7be0ab7

Browse files
committed
Merge branch 'main' of https://github.com/jakoch/cpp-devbox
2 parents 4c56ca9 + f232391 commit 7be0ab7

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/check-spelling.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: 🤘 Checkout Code
29-
uses: actions/checkout@v5 # https://github.com/actions/checkout
29+
uses: actions/checkout@v6 # https://github.com/actions/checkout
3030

3131
- name: 🔽 Install Dependencies
3232
run: sudo npm install -g cspell

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
docker-images: false
6464

6565
- name: 🤘 Checkout Code
66-
uses: actions/checkout@v5 # https://github.com/actions/checkout
66+
uses: actions/checkout@v6 # https://github.com/actions/checkout
6767

6868
- name: 🔍 Run hadolint
6969
uses: hadolint/hadolint-action@v3.3.0 # https://github.com/hadolint/hadolint-action
@@ -208,14 +208,14 @@ jobs:
208208

209209
- name: 🔐 Attest build provenance (base)
210210
if: github.event_name != 'pull_request'
211-
uses: actions/attest-build-provenance@v1
211+
uses: actions/attest-build-provenance@v3
212212
with:
213213
subject-name: ${{ steps.get_image_name_base.outputs.name }}
214214
subject-digest: ${{ steps.build-base.outputs.digest }}
215215

216216
- name: 🔐 Attest build provenance (with-vulkansdk)
217217
if: github.event_name != 'pull_request'
218-
uses: actions/attest-build-provenance@v1
218+
uses: actions/attest-build-provenance@v3
219219
with:
220220
subject-name: ${{ steps.get_image_name_base_with_vulkan.outputs.name }}
221221
subject-digest: ${{ steps.build-base-with-vulkansdk.outputs.digest }}
@@ -267,7 +267,7 @@ jobs:
267267
docker run --rm -v "${PWD}/devbox-test:/src" -w /src ghcr.io/jakoch/cpp-devbox:${{ matrix.config.debian_codename }}-with-vulkansdk-latest zsh -c "./build.sh"
268268
269269
- name: 📦 Provide the version info and info.json as a release asset
270-
uses: actions/upload-artifact@v4 # https://github.com/actions/upload-artifact
270+
uses: actions/upload-artifact@v5 # https://github.com/actions/upload-artifact
271271
with:
272272
name: version-info-${{ matrix.config.debian_codename }}
273273
path: |
@@ -299,7 +299,7 @@ jobs:
299299
# are not relevant for the image security. The scan is faster without them.
300300

301301
- name: 🛡️🔼 Upload Trivy scan results to GitHub Security tab
302-
uses: github/codeql-action/upload-sarif@v3 # https://github.com/github/codeql-action
302+
uses: github/codeql-action/upload-sarif@v4 # https://github.com/github/codeql-action
303303
with:
304304
sarif_file: 'trivy-results.sarif'
305305

@@ -324,7 +324,7 @@ jobs:
324324
# summary: true
325325

326326
# - name: 🛡️🔼 Upload Docker Scout scan results to GitHub Security tab
327-
# uses: github/codeql-action/upload-sarif@v3 # https://github.com/github/codeql-action
327+
# uses: github/codeql-action/upload-sarif@v4 # https://github.com/github/codeql-action
328328
# with:
329329
# sarif_file: 'scout-results.sarif.json'
330330

@@ -345,13 +345,13 @@ jobs:
345345
steps:
346346

347347
- name: 🤘 Checkout gh-pages branch
348-
uses: actions/checkout@v5
348+
uses: actions/checkout@v6
349349
with:
350350
ref: gh-pages
351351
fetch-depth: 1
352352

353353
- name: 🔽 Download all docs artifacts
354-
uses: actions/download-artifact@v5
354+
uses: actions/download-artifact@v6
355355
with:
356356
pattern: version-info-*
357357
merge-multiple: true

0 commit comments

Comments
 (0)