diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c7af0ef..d091693 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,7 +30,7 @@ jobs: python3 -m pip install --upgrade pip build python3 -m build - name: Upload wheels - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: wheels path: dist/*.whl diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 42db8b8..69b031b 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -71,7 +71,7 @@ jobs: mypy --config-file pyproject.toml --junit-xml mypy-${{ matrix.python-version }}.xml . - name: Upload Unit Test Results if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: MyPy Test Results (Python ${{ matrix.python-version }}) path: mypy-${{ matrix.python-version }}.xml @@ -81,7 +81,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Upload - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: Event File path: ${{ github.event_path }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 09ce19f..718a66c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,7 +53,7 @@ jobs: - run: mv test_reports/all.xml test_reports/pytest-${{ matrix.python-version }}.xml - name: Upload Test Results if: always() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: "Pytest Test Results (Python ${{ matrix.python-version }})" path: test_reports/pytest-${{ matrix.python-version }}.xml @@ -64,7 +64,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Upload - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: Event File path: ${{ github.event_path }}