diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 2ac367b25..8ea95084d 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -38,14 +38,14 @@ jobs: - name: run unit test using ${{ matrix.db }} run: docker compose run -e TEST_TARGET="${{ matrix.test_target }}" ibet-wallet-api-${{ matrix.db }} - run: mv cov/.coverage cov/.coverage-${{ strategy.job-index }} - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: matrix.db == 'postgres' with: name: .coverage-${{ strategy.job-index }} path: cov/.coverage-${{ strategy.job-index }} include-hidden-files: true - run: mv cov/pytest.xml cov/pytest-${{ strategy.job-index }}.xml - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: matrix.db == 'postgres' with: name: pytest-${{ strategy.job-index }}