Skip to content

Commit

Permalink
Bump action dependencies in "Upload test sketches report artifact" wo…
Browse files Browse the repository at this point in the history
…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 23, 2024
1 parent e55f3fa commit 33da1d2
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 33da1d2

Please sign in to comment.