From a01cc994b2c99e65e21adf50be6141304f9b9609 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Mon, 6 Jan 2025 10:39:29 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20update=20deprecated=20github=20a?= =?UTF-8?q?ctions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The v3 artifact actions will cease functioning on Jan 30th, see https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3b61128..2368bb7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: run: | python setup.py sdist --formats=zip - name: ⬆ Upload build result - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist path: dist @@ -40,7 +40,7 @@ jobs: with: python-version: ${{ matrix.python }} - name: ⬇ Download build result - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist path: dist @@ -60,7 +60,7 @@ jobs: - test-install steps: - name: ⬇ Download build result - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist path: dist