WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-artifact-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
shell: bash
run: echo "Dumbo" > file.txt
- name: Upload dummy file
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: telemetry-tools-attrs-1234
path: file.txt
Expand Down
2 changes: 1 addition & 1 deletion telemetry-impls/load-then-clone/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
| grep -q . && echo 'true' || echo 'false');
echo "artifact_found=${artifact_found}" | tee -a $GITHUB_OUTPUT;
- name: Download base environment variables file
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
if: steps.check-artifact-exists.outputs.artifact_found == 'true'
with:
name: telemetry-tools-env-vars
Expand Down
2 changes: 1 addition & 1 deletion telemetry-impls/stash-base-env-vars/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
SHARED_ACTIONS_REF=${SHARED_ACTIONS_REF:-main}
EOF
- name: Upload env vars file
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: telemetry-tools-env-vars
path: telemetry-env-vars
Expand Down
2 changes: 1 addition & 1 deletion telemetry-impls/stash-job-artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
printf "%s\n" "${values[@]}" > telemetry-artifacts/attrs;

- name: Upload attr file and any other files
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: telemetry-tools-artifacts-${{ env.JOB_ID }}
path: telemetry-artifacts
4 changes: 2 additions & 2 deletions telemetry-impls/summarize/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ runs:
with:
all_jobs: true
- name: Upload job JSON file if debugging
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: runner.debug == '1'
with:
name: telemetry-tools-all_jobs.json
path: all_jobs.json
# This downloads ALL of the files that we have collected from each job.
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
path: telemetry-artifacts
pattern: telemetry-tools-*
Expand Down