From de203b378463942ae5dc30458e901e6b57cabda2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 19:12:54 +0000 Subject: [PATCH] Bump actions/checkout from 1 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 1 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/v1...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/bootstrap_project.yml | 6 +++--- .github/workflows/create-tag.yml | 2 +- .github/workflows/lintinig.yml | 2 +- .github/workflows/main.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/bootstrap_project.yml b/.github/workflows/bootstrap_project.yml index c7f7c77..401634d 100644 --- a/.github/workflows/bootstrap_project.yml +++ b/.github/workflows/bootstrap_project.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v7 - name: Rename directory run: | @@ -49,7 +49,7 @@ jobs: needs: rename_directory # Ensures it runs after rename is pushed steps: - name: Check out repository - uses: actions/checkout@v3 # Checks out the repo with the renamed directory + uses: actions/checkout@v7 # Checks out the repo with the renamed directory - name: Update README title run: | @@ -73,7 +73,7 @@ jobs: needs: rename_directory # Can run after rename, in parallel with update_readme steps: - name: Check out repository - uses: actions/checkout@v3 # Checks out the repo with the renamed directory + uses: actions/checkout@v7 # Checks out the repo with the renamed directory - name: Create CODEOWNERS file run: | diff --git a/.github/workflows/create-tag.yml b/.github/workflows/create-tag.yml index df78f63..17757f5 100644 --- a/.github/workflows/create-tag.yml +++ b/.github/workflows/create-tag.yml @@ -14,7 +14,7 @@ jobs: contents: write # Required to push tags steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 # Required to fetch all tags diff --git a/.github/workflows/lintinig.yml b/.github/workflows/lintinig.yml index 54408d2..9c756d4 100644 --- a/.github/workflows/lintinig.yml +++ b/.github/workflows/lintinig.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Check out Git repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v4 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0c339c9..d02abb9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ jobs: os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} @@ -39,7 +39,7 @@ jobs: os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3051b9a..27eff75 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: name: Create Release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: # by default, it uses a depth of 1 # this fetches all history so that we can read each commit @@ -30,7 +30,7 @@ jobs: needs: release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v1 with: