From 5c4e749dcf8566fc94f108df6b8482c0c24670db Mon Sep 17 00:00:00 2001 From: Mathieu Choplain Date: Mon, 9 Sep 2024 11:28:32 +0200 Subject: [PATCH] ci: update upload-artifact action to v4 The upload-artifact@v2 action was deprecated since a while, and is now completely disabled (forceful CI failure). Update to v4 to get CI back. This also requires changing the artifact names, as the v4 action no longer supports uploading different artifacts with the same name. Signed-off-by: Mathieu Choplain --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 289e74b4e..2112164d7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,7 @@ jobs: --cov-report html \ -vv - name: store coverage report - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-${{ matrix.python-version }} path: htmlcov