diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0b7b2c7b..c79e7d3a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -79,7 +79,7 @@ jobs: python -X faulthandler -m pytest --capture=no -vv --cov=pymodaq_gui mv .coverage coverage/coverage_${{ matrix.os }}_${{ matrix.python-version }}_${{ matrix.qt-backend }} - name: Upload coverage artifact - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: coverage-${{ matrix.os }}-${{ matrix.python-version }}_${{ matrix.qt-backend }} path: coverage/coverage_${{ matrix.os }}_${{ matrix.python-version }}_${{ matrix.qt-backend }} @@ -111,7 +111,7 @@ jobs: - name: Upload badge artifact if: ${{ always() }} - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v5.0.0 with: name: tests_${{runner.os}}_${{matrix.python-version}}_${{matrix.qt-backend}} path: '${{ steps.extract_branch.outputs.branch }}/tests_${{runner.os}}_${{matrix.python-version}}_${{matrix.qt-backend}}.svg' @@ -131,7 +131,7 @@ jobs: ref: badges - name: Download badges - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 - name: Reorganize badges run: | @@ -164,7 +164,7 @@ jobs: uses: actions/checkout@v5.0.0 - name: Download all coverage artifacts - uses: actions/download-artifact@v5.0.0 + uses: actions/download-artifact@v6.0.0 with: path: ./coverage-reports