From 28214ea8d660a7265bf45deec14c5822eb0c1652 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 10 Dec 2024 20:12:29 +0100 Subject: [PATCH] ci: Switch to download-artifact v4 See https://github.com/actions/upload-artifact?tab=readme-ov-file#v4---whats-new from what I can tell, we're not affected by the breaking changes. The v3 action will stop working on January 30th: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ --- .github/workflows/deploy.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 066f34f..2d9c4a7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v3 - name: Download Package - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Packages path: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8eb17bd..5480f4a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Download Package - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: Packages path: dist