diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 73fd442..3f59462 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -107,7 +107,7 @@ jobs: ../build - name: Upload coverage artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: coverage path: coverage.xml diff --git a/.github/workflows/python-bindings.yml b/.github/workflows/python-bindings.yml index 8b09661..83cadc3 100644 --- a/.github/workflows/python-bindings.yml +++ b/.github/workflows/python-bindings.yml @@ -82,7 +82,7 @@ jobs: - name: "Upload coverage report" if: ${{ startsWith(matrix.on, 'ubuntu-') }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ format('{0}-{1}-tests', matrix.on, matrix.python) }} path: ./coverage.xml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e8511ad..ca0bee9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: run: make pdf - name: "Upload pdf documentation" if: success() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: path: "doxygen/documentation*.pdf" name: "documentation.pdf" @@ -115,7 +115,7 @@ jobs: - name: "Upload built RISC-V wheel" if: success() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: "${{ format('py_capio_cl_ubunturv64_python_{0}.whl', matrix.python) }}" path: "dist/${{ format('py_capio_cl_ubunturv64_python_{0}.whl', matrix.python) }}" @@ -182,7 +182,7 @@ jobs: run: | cibuildwheel --output-dir wheelhouse - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: wheels-${{ matrix.os }} path: wheelhouse/*.whl @@ -203,7 +203,7 @@ jobs: python -m pip install --upgrade build python -m build --sdist - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: sdist path: dist/*.tar.gz