From 8f1325f529aa7e5e648659ae54016aabe03b4adb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2026 16:18:26 +0000 Subject: [PATCH] chore(ci): 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/ci.yml | 6 +++--- .github/workflows/dco.yml | 2 +- .github/workflows/images.yml | 8 ++++---- .github/workflows/publish-pypi.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/security.yml | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6aedaa3..da887d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: astral-sh/setup-uv@v7 - name: Sync run: uv sync --all-packages --all-groups @@ -41,7 +41,7 @@ jobs: integration-postgres: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: astral-sh/setup-uv@v7 - run: uv sync --all-packages --all-groups - name: Start postgres stack @@ -55,7 +55,7 @@ jobs: integration-trino: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: astral-sh/setup-uv@v7 - run: uv sync --all-packages --all-groups - name: Start trino stack diff --git a/.github/workflows/dco.yml b/.github/workflows/dco.yml index 499e7e4..c8dc00c 100644 --- a/.github/workflows/dco.yml +++ b/.github/workflows/dco.yml @@ -14,7 +14,7 @@ jobs: dco: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: # The whole PR commit range has to be walkable, not just the merge commit. fetch-depth: 0 diff --git a/.github/workflows/images.yml b/.github/workflows/images.yml index 3d11aa3..ec3a58a 100644 --- a/.github/workflows/images.yml +++ b/.github/workflows/images.yml @@ -20,7 +20,7 @@ jobs: engine: [postgres, trino] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Build ${{ matrix.engine }} image run: docker build -f Dockerfile.${{ matrix.engine }} -t cpr-smoke-${{ matrix.engine }} . - name: Save image @@ -49,7 +49,7 @@ jobs: --health-timeout 5s --health-retries 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/download-artifact@v4 with: name: cpr-smoke-postgres-image @@ -104,7 +104,7 @@ jobs: needs: build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/download-artifact@v4 with: name: cpr-smoke-trino-image @@ -176,7 +176,7 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: docker/setup-qemu-action@v3 - uses: docker/setup-buildx-action@v4 - name: Log in to ghcr.io diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 3c286a7..9ea43a1 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -43,7 +43,7 @@ jobs: id-token: write # OIDC token for Trusted Publishing contents: read # actions/checkout needs read access to the repo steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: astral-sh/setup-uv@v7 - name: Test before publishing # `-m "not image"` deselects the image smoke tests; images.yml runs diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 62b8fa2..1241192 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,7 +53,7 @@ jobs: # other source of the repo's files. Its absence went unnoticed through # review because this job only triggers on push:tags, never on # pull_request, so no PR's CI ever actually executes it. - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Wait for publish-pypi.yml and images.yml to finish on this commit run: | diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 2da2462..bdb9c25 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -47,7 +47,7 @@ jobs: # range (below), and this repository is small enough (a few hundred KB, # well under a second to scan) that fetch-depth: 0 costs nothing on every # trigger rather than only on the schedule. - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -106,7 +106,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # Advisory: reports HIGH/CRITICAL and always exits 0. Base-image and # transitive CVEs are often unfixable upstream, so gating on them would