From 82f2ab3b2775caba9683e81d5ca57fcdac6f51dc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 04:33:56 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 7. - [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...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' 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..a5f7475 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@v7 with: repository: ${{ inputs.repository }} diff --git a/.github/workflows/build-check.yml b/.github/workflows/build-check.yml index 96b2729..98bb62f 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@v7 with: repository: ${{ inputs.repository }} persist-credentials: false diff --git a/.github/workflows/build-distribution.yml b/.github/workflows/build-distribution.yml index 35623e4..ca15634 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@v7 with: repository: ${{ inputs.repository }} persist-credentials: false diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index b16704b..4da22bd 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@v7 with: repository: ${{ inputs.repository }} diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index b7ed1f3..850285e 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@v7 with: repository: ${{ inputs.repository }} diff --git a/.github/workflows/pytest-coverage.yml b/.github/workflows/pytest-coverage.yml index 887cb78..7587986 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@v7 with: repository: ${{ inputs.repository }} diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index c9ed22b..d1e093d 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@v7 with: repository: ${{ inputs.repository }}