From 5765250b12f89d29459255df74d959fc609c3cea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 22:03:17 +0000 Subject: [PATCH] chore(deps): bump actions/setup-go in the all group across 1 directory Bumps the all group with 1 update in the / directory: [actions/setup-go](https://github.com/actions/setup-go). Updates `actions/setup-go` from 6.2.0 to 6.4.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5...4a3601121dd01d1626a1e23e37211e3254c1c06c) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/verify-docgen-fmt.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c70d3813..964abd3e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Install Go - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 + uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c with: go-version: ${{ matrix.go-version }} - name: Checkout code diff --git a/.github/workflows/verify-docgen-fmt.yml b/.github/workflows/verify-docgen-fmt.yml index a89ecd4c..a643ae0a 100644 --- a/.github/workflows/verify-docgen-fmt.yml +++ b/.github/workflows/verify-docgen-fmt.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 + - uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c - run: ./scripts/verify-docs.sh fmt: name: Verify go fmt @@ -21,5 +21,5 @@ jobs: steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 + - uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c - run: test -z $(go fmt ./...)