diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9575fda2..1f1ded96 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - python: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] os: ["ubuntu-latest"] pytest_opts: ["--workers 4 --tests-per-worker 1"] requirements: [""] @@ -149,7 +149,7 @@ jobs: run: | make docs-build - name: Save docs artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: docs-html path: docs/_site @@ -161,7 +161,7 @@ jobs: if: "${{github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork }}" steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: docs-html path: docs/_site @@ -220,7 +220,7 @@ jobs: needs: ["build-docs", "tests", "test-rsconnect"] if: github.ref == 'refs/heads/main' steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: docs-html path: docs/_site