Skip to content

Commit 7c2af74

Browse files
chore(deps): update github artifact actions
1 parent c613362 commit 7c2af74

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/test-artifact-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
shell: bash
1717
run: echo "Dumbo" > file.txt
1818
- name: Upload dummy file
19-
uses: actions/upload-artifact@v4
19+
uses: actions/upload-artifact@v5
2020
with:
2121
name: telemetry-tools-attrs-1234
2222
path: file.txt

telemetry-impls/load-then-clone/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ runs:
3030
| grep -q . && echo 'true' || echo 'false');
3131
echo "artifact_found=${artifact_found}" | tee -a $GITHUB_OUTPUT;
3232
- name: Download base environment variables file
33-
uses: actions/download-artifact@v5
33+
uses: actions/download-artifact@v6
3434
if: steps.check-artifact-exists.outputs.artifact_found == 'true'
3535
with:
3636
name: telemetry-tools-env-vars

telemetry-impls/stash-base-env-vars/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ runs:
3131
SHARED_ACTIONS_REF=${SHARED_ACTIONS_REF:-main}
3232
EOF
3333
- name: Upload env vars file
34-
uses: actions/upload-artifact@v4
34+
uses: actions/upload-artifact@v5
3535
with:
3636
name: telemetry-tools-env-vars
3737
path: telemetry-env-vars

telemetry-impls/stash-job-artifacts/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
printf "%s\n" "${values[@]}" > telemetry-artifacts/attrs;
1818

1919
- name: Upload attr file and any other files
20-
uses: actions/upload-artifact@v4
20+
uses: actions/upload-artifact@v5
2121
with:
2222
name: telemetry-tools-artifacts-${{ env.JOB_ID }}
2323
path: telemetry-artifacts

telemetry-impls/summarize/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ runs:
2020
with:
2121
all_jobs: true
2222
- name: Upload job JSON file if debugging
23-
uses: actions/upload-artifact@v4
23+
uses: actions/upload-artifact@v5
2424
if: runner.debug == '1'
2525
with:
2626
name: telemetry-tools-all_jobs.json
2727
path: all_jobs.json
2828
# This downloads ALL of the files that we have collected from each job.
29-
- uses: actions/download-artifact@v5
29+
- uses: actions/download-artifact@v6
3030
with:
3131
path: telemetry-artifacts
3232
pattern: telemetry-tools-*

0 commit comments

Comments
 (0)