Skip to content

Commit 39c0012

Browse files
committed
Bump action dependencies in "Upload test sketches report artifact" workflow
`actions/upload-artifact` is only bumped to v3 here because a significant change in the artifact format was introduced in 4.0.0. It is necessary for the workflow to continue to produce test data that provides integration test coverage for compatibility of the action with the artifacts produced by <=v3 of the action.
1 parent b077ef3 commit 39c0012

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/upload-report-artifact.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919

2020
# The action only does a deltas report when the sketches report's `commit_hash` value matches the PR head SHA
2121
- name: Update commit hash in reports
@@ -32,7 +32,7 @@ jobs:
3232
done
3333
3434
- name: Save sketches report as workflow artifact
35-
uses: actions/upload-artifact@v2
35+
uses: actions/upload-artifact@v3
3636
with:
3737
if-no-files-found: error
3838
path: ${{ env.SKETCHES_REPORTS_PATH }}

0 commit comments

Comments
 (0)