From f2dbfe1cfe48413bb9bca83febf066a45f126f41 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 14:07:31 +0000 Subject: [PATCH] build(deps): bump the github-actions group across 1 directory with 2 updates Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-go](https://github.com/actions/setup-go). 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-go` from 6 to 7 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-go dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/stress.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73c5c10..76cb963 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,12 +23,12 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # setup-go caches the module and build caches itself, keyed on # go.sum, so no separate actions/cache step is needed. - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version: ${{ env.GO_VERSION }} diff --git a/.github/workflows/stress.yml b/.github/workflows/stress.yml index b878248..cc1ea0d 100644 --- a/.github/workflows/stress.yml +++ b/.github/workflows/stress.yml @@ -47,12 +47,12 @@ jobs: # workflow_dispatch soak can be given a much larger size. timeout-minutes: 60 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 # setup-go caches the module and build caches itself, keyed on # go.sum, so no separate actions/cache step is needed. - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version: ${{ env.GO_VERSION }}