From 48e31ccef131b8ce15748872fc74f5d462e55abe Mon Sep 17 00:00:00 2001 From: Zak Burke Date: Fri, 13 Sep 2024 17:05:01 -0400 Subject: [PATCH] STRIPES-924 use valid upload-artifact version (#353) Hahaha don't do anything related to STRIPES-924, which is The Right Way to fix this problem, but instead just work around it by bumping the version of the deprecated dep, because that's a smaller/safer operation on a Friday afternoon. Doesn't actually ref STRIPES-924, just pokes it in the eye --- .github/workflows/build-npm-release.yml | 4 ++-- .github/workflows/build-npm.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-npm-release.yml b/.github/workflows/build-npm-release.yml index ed7c53a..a895d62 100644 --- a/.github/workflows/build-npm-release.yml +++ b/.github/workflows/build-npm-release.yml @@ -150,7 +150,7 @@ jobs: comment_title: Jest Unit Test Statistics - name: Publish Jest coverage report - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 if: always() with: name: jest-coverage-report @@ -158,7 +158,7 @@ jobs: retention-days: 30 - name: Publish yarn.lock - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 if: failure() with: name: yarn.lock diff --git a/.github/workflows/build-npm.yml b/.github/workflows/build-npm.yml index d5177fa..23a1652 100644 --- a/.github/workflows/build-npm.yml +++ b/.github/workflows/build-npm.yml @@ -93,7 +93,7 @@ jobs: comment_title: Jest Unit Test Statistics - name: Publish Jest coverage report - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 if: always() with: name: jest-coverage-report @@ -101,7 +101,7 @@ jobs: retention-days: 30 - name: Publish yarn.lock - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 if: failure() with: name: yarn.lock