From bf8f7d968aaaabcfa201d1db7d5cbd8f3d68400a Mon Sep 17 00:00:00 2001 From: Rob Herley Date: Thu, 14 Dec 2023 15:10:05 -0500 Subject: [PATCH] remove references to v4-beta --- .github/workflows/check-dist.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index 3b8b872..cd90053 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -46,7 +46,7 @@ jobs: id: diff # If index.js was different than expected, upload the expected version as an artifact - - uses: actions/upload-artifact@v4-beta + - uses: actions/upload-artifact@v4 if: ${{ failure() && steps.diff.conclusion == 'failure' }} with: name: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2a4eb02..3209828 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -48,13 +48,13 @@ jobs: echo "Hello world from file B" > path/to/artifact-B/file-B.txt - name: Upload artifact A - uses: actions/upload-artifact@v4-beta + uses: actions/upload-artifact@v4 with: name: Artifact-A-${{ matrix.runs-on }} path: path/to/artifact-A - name: Upload artifact B - uses: actions/upload-artifact@v4-beta + uses: actions/upload-artifact@v4 with: name: Artifact-B-${{ matrix.runs-on }} path: path/to/artifact-B