diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 4a1b7a4b..69940054 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -72,7 +72,7 @@ jobs: run: python ./scripts/docs.py verify-readme - name: Build Docs run: python ./scripts/docs.py build - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: docs-site path: ./site/** diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 54af9219..7ce85022 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -76,7 +76,7 @@ jobs: COVERAGE_FILE: coverage/.coverage.${{ runner.os }}-py${{ matrix.python-version }} CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }} - name: Store coverage files - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: coverage-${{ matrix.python-version }}-${{ matrix.anyio-version }} path: coverage @@ -111,7 +111,7 @@ jobs: - run: coverage combine coverage - run: coverage html --title "Coverage for ${{ github.sha }}" - name: Store coverage HTML - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: coverage-html path: htmlcov