From 0f5aa89c1ba9e3e0b0db6917159536f3a1ac2833 Mon Sep 17 00:00:00 2001 From: Ali Akbar Date: Thu, 12 Sep 2024 18:53:16 +0500 Subject: [PATCH] build: update actions/upload-artifact to v4 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7483eac258..c3d1c25878 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,7 @@ jobs: continue-on-error: ${{ matrix.status == 'ignored' }} - name: Upload coverage if: matrix.db-version == 'mysql80' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: coverage${{ matrix.pytest-split-group }} path: .coverage @@ -60,7 +60,7 @@ jobs: PYTHON_VERSION: 3.12 - name: Download all artifacts # Downloads coverage1, coverage2, etc. - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 - name: Run coverage run: make ci_coverage - uses: codecov/codecov-action@v1