From e30861a52f745f87eeb24f7b054b90aee39b4bf1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 22:06:47 +0000 Subject: [PATCH] Update actions/checkout action to v6 --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/release.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4baa9e8..9a87516 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: matrix: python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 with: @@ -48,7 +48,7 @@ jobs: coverage: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Cache LLVM and Clang id: cache-llvm uses: actions/cache@v4 @@ -88,7 +88,7 @@ jobs: matrix: check: ["pylint", "pycodestyle", "black", "mypy"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Cache LLVM and Clang id: cache-llvm uses: actions/cache@v4 @@ -118,7 +118,7 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Cache LLVM and Clang id: cache-llvm uses: actions/cache@v4 @@ -150,7 +150,7 @@ jobs: matrix: sphinx-version: ["four"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Cache LLVM and Clang id: cache-llvm uses: actions/cache@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index caf5fb8..6ced494 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: permissions: id-token: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 with: