From c52774db7c6ca0e12feb91e60690925ebcc0b89c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 09:42:40 +0000 Subject: [PATCH] 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: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/code-analysis.yml | 4 ++-- .github/workflows/pre-commit.yml | 2 +- .github/workflows/test-legacy.yml | 4 ++-- .github/workflows/test-pypi.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/code-analysis.yml b/.github/workflows/code-analysis.yml index 91570ee28..eeb3abd94 100644 --- a/.github/workflows/code-analysis.yml +++ b/.github/workflows/code-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL @@ -73,7 +73,7 @@ jobs: needs: CodeQL-Build steps: - name: Checkout repository (for Trufflehog - full history) - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 846781cc8..84d917c16 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -6,7 +6,7 @@ jobs: pre-commit: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/setup-python@v6 with: python-version: "3.11" diff --git a/.github/workflows/test-legacy.yml b/.github/workflows/test-legacy.yml index 2d0d28243..6e5e0e825 100644 --- a/.github/workflows/test-legacy.yml +++ b/.github/workflows/test-legacy.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest name: Detect unreleased dependencies steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: | for reqfile in requirements.txt test-requirements.txt ; do if [ -f ${reqfile} ] ; then @@ -44,7 +44,7 @@ jobs: ports: - 5432:5432 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # with: # persist-credentials: false - name: Disable demo data diff --git a/.github/workflows/test-pypi.yml b/.github/workflows/test-pypi.yml index a72826170..f994c0aa3 100644 --- a/.github/workflows/test-pypi.yml +++ b/.github/workflows/test-pypi.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest name: Detect unreleased dependencies steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: | for reqfile in requirements.txt test-requirements.txt ; do if [ -f ${reqfile} ] ; then @@ -44,7 +44,7 @@ jobs: ports: - 5432:5432 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # with: # persist-credentials: false - name: Disable demo data diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e452023c3..0e55756e4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest name: Detect unreleased dependencies steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - run: | for reqfile in requirements.txt test-requirements.txt ; do if [ -f ${reqfile} ] ; then @@ -57,7 +57,7 @@ jobs: ports: - 5432:5432 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # with: # persist-credentials: false - name: Disable demo data