From de1df1202c9ec844104ee8f86cb4150e11ca1645 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 17:26:52 +0000 Subject: [PATCH] ci(deps): Bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...v7) --- 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/auto-tag-on-version-bump.yml | 2 +- .github/workflows/build-release.yml | 4 ++-- .github/workflows/dco.yml | 2 +- .github/workflows/test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/auto-tag-on-version-bump.yml b/.github/workflows/auto-tag-on-version-bump.yml index 86b5f57e..980f7744 100644 --- a/.github/workflows/auto-tag-on-version-bump.yml +++ b/.github/workflows/auto-tag-on-version-bump.yml @@ -40,7 +40,7 @@ jobs: tag: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: # Need full history so `git tag` sees existing tags and # `git push origin ` works against the remote. diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 5da0f6e8..b5947e6a 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -38,7 +38,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # When triggered by push, github.ref already points at the # tag. When triggered by repository_dispatch, github.ref is @@ -125,7 +125,7 @@ jobs: # can read CHANGELOG.md. The other release steps don't need the # working copy, but adding checkout at the top keeps the job # idiomatic and lets future steps reference any repo file. - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Download all artifacts uses: actions/download-artifact@v4 diff --git a/.github/workflows/dco.yml b/.github/workflows/dco.yml index da89947d..907daa48 100644 --- a/.github/workflows/dco.yml +++ b/.github/workflows/dco.yml @@ -12,7 +12,7 @@ jobs: name: Sign-off check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14f79352..4692f316 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6 @@ -55,7 +55,7 @@ jobs: name: Headless install (no customtkinter) runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python 3.13 uses: actions/setup-python@v6