Skip to content

Commit c1a2d5e

Browse files
Bump the actions group with 4 updates
Bumps the actions group with 4 updates: [actions/cache](https://github.com/actions/cache), [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/cache` from 5.0.1 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@9255dc7...cdf6c1f) Updates `actions/checkout` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@8e8c483...de0fac2) Updates `actions/upload-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@b7c566a...bbbca2d) Updates `actions/download-artifact` from 7.0.0 to 8.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@37930b1...70fc10c) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8a60632 commit c1a2d5e

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/_shared-prepare-docker-cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Cache Docker images.
2929
id: cache
3030
if: ${{ steps.check_cache.outputs.exists == 'false' }}
31-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # 5.0.1
31+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # 5.0.3
3232
with:
3333
path: ./docker-cache
3434
key: kurtosis-docker-${{ runner.os }}-${{ inputs.kurtosis_version }}

.github/workflows/_shared-run-test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
timeout-minutes: 1440
111111
steps:
112112
- name: Checkout Repository
113-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
113+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
114114

115115
- name: "Stagger job start"
116116
if: ${{ inputs.stagger_delay != '0' && inputs.stagger_delay != '' }}
@@ -510,14 +510,14 @@ jobs:
510510

511511
- name: Upload dump artifact
512512
if: ${{ steps.enclave_dump.outputs.dump_dir != '' }}
513-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
513+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
514514
with:
515515
name: "enclave-dump-assertoor-${{ github.run_id }}-${{ inputs.id }}"
516516
path: "${{ steps.enclave_dump.outputs.dump_dir }}"
517517

518518
- name: Upload Claude Code output artifact
519519
if: ${{ always() && steps.claude_code.outcome != 'skipped' }}
520-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
520+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
521521
with:
522522
name: "claude-code-output-${{ github.run_id }}-${{ inputs.id }}"
523523
path: |
@@ -699,7 +699,7 @@ jobs:
699699
exit 1 # fail action
700700
fi
701701
- name: Upload summary artifact
702-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
702+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
703703
if: ${{ always() }}
704704
with:
705705
name: "summary-${{ inputs.id }}"

.github/workflows/_shared-run.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
needs: [get_test, run_test]
218218
steps:
219219
- name: Checkout Repository
220-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
220+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
221221
- name: Get summary artifacts
222222
id: "summary_ids"
223223
run: |
@@ -228,7 +228,7 @@ jobs:
228228
env:
229229
GH_TOKEN: ${{ github.token }}
230230
- name: Download summary artifacts
231-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
231+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
232232
with:
233233
artifact-ids: ${{ steps.summary_ids.outputs.artifact_ids }}
234234
path: "./summaries"

.github/workflows/run-manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
kurtosis_versions: ${{ steps.tests.outputs.kurtosis_versions }}
4242
steps:
4343
- name: Checkout Repository
44-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
44+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4545
- name: "Load test configurations from tests.yaml"
4646
id: tests
4747
shell: bash

.github/workflows/run-scheduled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
kurtosis_versions: ${{ steps.tests.outputs.kurtosis_versions }}
1919
steps:
2020
- name: Checkout Repository
21-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
21+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2222
- name: "Load test configurations from tests.yaml"
2323
id: tests
2424
shell: bash

0 commit comments

Comments
 (0)