From 36eaa2911883f2ff763c69c0fb3af0b0046c5332 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 04:37:49 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/black.yml | 2 +- .github/workflows/build-check.yml | 2 +- .github/workflows/build-distribution.yml | 2 +- .github/workflows/mypy.yml | 2 +- .github/workflows/pylint.yml | 2 +- .github/workflows/pytest-coverage.yml | 2 +- .github/workflows/pytest.yml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index 7bad06c..0f676b8 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.repository }} diff --git a/.github/workflows/build-check.yml b/.github/workflows/build-check.yml index 96b2729..1f0259e 100644 --- a/.github/workflows/build-check.yml +++ b/.github/workflows/build-check.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.repository }} persist-credentials: false diff --git a/.github/workflows/build-distribution.yml b/.github/workflows/build-distribution.yml index 7a75fd0..fe7829c 100644 --- a/.github/workflows/build-distribution.yml +++ b/.github/workflows/build-distribution.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.repository }} persist-credentials: false diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index b16704b..404dbfe 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.repository }} diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index b7ed1f3..d72fb3a 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.repository }} diff --git a/.github/workflows/pytest-coverage.yml b/.github/workflows/pytest-coverage.yml index 887cb78..85ae0ca 100644 --- a/.github/workflows/pytest-coverage.yml +++ b/.github/workflows/pytest-coverage.yml @@ -40,7 +40,7 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.repository }} diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index c9ed22b..d5ad4cd 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.repository }}