Skip to content
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Bump action dependencies in "Upload test sketches report artifact" wo…
…rkflow

`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.
  • Loading branch information
per1234 committed Jan 24, 2024
commit 39c0012c59258cb9a4601d75196189a00ca2e71d
4 changes: 2 additions & 2 deletions .github/workflows/upload-report-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

# The action only does a deltas report when the sketches report's `commit_hash` value matches the PR head SHA
- name: Update commit hash in reports
Expand All @@ -32,7 +32,7 @@ jobs:
done

- name: Save sketches report as workflow artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
if-no-files-found: error
path: ${{ env.SKETCHES_REPORTS_PATH }}
Expand Down