From ff1db715868cba866009b7c2b21e2eada3dab1ea Mon Sep 17 00:00:00 2001 From: Jonathan Edey <145066863+jonathanedey@users.noreply.github.com> Date: Mon, 6 May 2024 16:25:55 -0400 Subject: [PATCH] (chore): Bump `upload-artifact` and `download-artifact` to v4 (#395) --- .github/workflows/nightly.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index bd7c77b1..9db67570 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -66,7 +66,7 @@ jobs: # Attach the packaged artifacts to the workflow output. These can be manually # downloaded for later inspection if necessary. - name: Archive artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: Release path: FirebaseAdmin/FirebaseAdmin/bin/Release diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9cb77aa7..d6315bcb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -77,7 +77,7 @@ jobs: # Attach the packaged artifacts to the workflow output. These can be manually # downloaded for later inspection if necessary. - name: Archive artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: Release path: FirebaseAdmin/FirebaseAdmin/bin/Release @@ -105,7 +105,7 @@ jobs: # Download the artifacts created by the stage_release job. - name: Download release candidates - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: Release