diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml index f0a5336f7..e30b3cb77 100644 --- a/.github/workflows/ci-docs.yml +++ b/.github/workflows/ci-docs.yml @@ -51,7 +51,7 @@ jobs: echo '' >> coverage.xml if: matrix.python-version == 3.12 - name: Upload mock coverage to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ea4bd8ea..550d8555f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,14 +26,14 @@ jobs: - '3.14' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install uv - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 + uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 - name: Install Python dependencies run: | @@ -44,7 +44,7 @@ jobs: run: | uv run tox - - uses: codecov/codecov-action@v6 + - uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true diff --git a/.github/workflows/docs-preview.yml b/.github/workflows/docs-preview.yml index 756980b9c..7cfc95bd6 100644 --- a/.github/workflows/docs-preview.yml +++ b/.github/workflows/docs-preview.yml @@ -19,7 +19,7 @@ jobs: build-docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -30,7 +30,7 @@ jobs: - name: Install uv if: github.event.action != 'closed' # We don't need the build if we know the preview will be removed - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 + uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 - name: Install Python dependencies if: github.event.action != 'closed' # We don't need the build if we know the preview will be removed diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 54f4a7156..ef140d1d5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,7 +14,7 @@ jobs: build-docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # require all of history to see all tagged versions' docs fetch-depth: 0 @@ -25,7 +25,7 @@ jobs: python-version-file: "pyproject.toml" - name: Install uv - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 + uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 - name: Install Python dependencies run: | @@ -34,7 +34,7 @@ jobs: - name: Checkout gh-pages # As we already did a deploy of gh-pages above, it is guaranteed to be there # so check it out so we can selectively build docs below - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: gh-pages path: docs/_build diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1583a8213..40f90ad58 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,13 +8,13 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-python@v6 with: python-version-file: "pyproject.toml" - name: Install uv - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 + uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 - name: Install Python dependencies run: | uv sync --locked --extra dev diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f11ebf255..7b90796e4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: # Needed for GitHub releases contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 submodules: true