From 837136ea36d28cd5d34afe4e982fc268afe8d82a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 05:10:12 +0000 Subject: [PATCH] deps: bump the actions-dependencies group across 1 directory with 2 updates Bumps the actions-dependencies group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 6 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/v6...v7) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-dependencies - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- .github/workflows/docker-publish.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bb518e..ec1647c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Get Python version from Dockerfile id: get-version @@ -32,7 +32,7 @@ jobs: echo "version=$VERSION" >> $GITHUB_OUTPUT - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: ${{ steps.get-version.outputs.version }} cache: "pip" @@ -51,7 +51,7 @@ jobs: timeout-minutes: 30 steps: - name: Check out repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Execute smoke test run: make smoke diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 34e5b73..0d7e648 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository at triggering commit - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.event.workflow_run.head_sha }}