From fc5b47f02e3182247a61e2f4557ec0f8fa026ef3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 04:18:34 +0000 Subject: [PATCH] ci(deps): bump actions/checkout Bumps the actions-all group with 1 update in the / directory: [actions/checkout](https://github.com/actions/checkout). 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-all ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/codeql.yml | 2 +- .github/workflows/commitlint.yml | 2 +- .github/workflows/docker-publish.yml | 2 +- .github/workflows/labels-sync.yml | 2 +- .github/workflows/release.yml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86ca9f3..f69a701 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: name: Python — lint, type, test runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Detect Python project id: pyproject @@ -122,7 +122,7 @@ jobs: name: Go — vet, test runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check for Go module id: go-check @@ -154,7 +154,7 @@ jobs: name: Check oapi-codegen output is up to date runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Check for Go module id: go-check @@ -189,7 +189,7 @@ jobs: name: Docker — build smoke test runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 @@ -217,7 +217,7 @@ jobs: name: Privacy / secret scan runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 8362f19..7deb66a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -22,7 +22,7 @@ jobs: matrix: language: [python] # add 'go' once frontend/ exists steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Initialize CodeQL uses: github/codeql-action/init@v4 diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 143eeba..4c5fc27 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -12,7 +12,7 @@ jobs: name: Validate PR title (Conventional Commits) runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Node uses: actions/setup-node@v6 with: diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 2d1f9e7..e053761 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -83,7 +83,7 @@ jobs: runner: ubuntu-24.04-arm arch: arm64 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Verify Dockerfile exists for ${{ matrix.service }} run: test -f "${{ matrix.service }}/Dockerfile" diff --git a/.github/workflows/labels-sync.yml b/.github/workflows/labels-sync.yml index f783c07..60fa3c7 100644 --- a/.github/workflows/labels-sync.yml +++ b/.github/workflows/labels-sync.yml @@ -16,7 +16,7 @@ jobs: name: Sync labels from labels.yml runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Sync labels uses: EndBug/label-sync@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2ce2bdf..5f13b33 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -51,7 +51,7 @@ jobs: new-release-published: ${{ steps.semantic.outputs.new_release_published }} new-release-version: ${{ steps.semantic.outputs.new_release_version }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 persist-credentials: false