From 189a8ddd1c44c7d74b63d959bd164559d641751e Mon Sep 17 00:00:00 2001 From: per1234 Date: Fri, 19 Jan 2024 14:19:19 -0800 Subject: [PATCH] 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. --- .github/workflows/upload-report-artifact.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/upload-report-artifact.yml b/.github/workflows/upload-report-artifact.yml index b23c129..23705e6 100644 --- a/.github/workflows/upload-report-artifact.yml +++ b/.github/workflows/upload-report-artifact.yml @@ -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 @@ -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 }}