From 9839cbc72b8d15feeb2c9b997877b5e53140595f Mon Sep 17 00:00:00 2001 From: Pankaj Koti Date: Thu, 9 Jan 2025 16:12:53 +0530 Subject: [PATCH] Upgrade GitHub action artifacts upload-artifact & download-artifact to v4 (#53) Since upload-artifact@v3 & download-artifact@v3 are not going to be usable from January 30th, 2025, upgrade them to v4. Ref: https://astronomer.slack.com/archives/C07DCAVK7TR/p1736358249600619 related: astronomer/oss-integrations-private#64 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e9c208..d5dec55 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: - name: Build source distribution run: python -m build - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: artifacts path: dist/* @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: artifacts path: dist