From 3eb59244c11b88f58f1f904984a68be20650b468 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 21:17:42 +0000 Subject: [PATCH 1/2] chore(deps): Bump actions/setup-go from 5 to 6 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 928ba478a..b221e226b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -21,7 +21,7 @@ jobs: - "ci/resources/stemcell-version-bump" steps: - uses: actions/checkout@v5 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version-file: go.mod - run: go test -v -race ./... @@ -39,7 +39,7 @@ jobs: - "ci/resources/stemcell-version-bump" steps: - uses: actions/checkout@v5 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version-file: go.mod - uses: golangci/golangci-lint-action@v8.0.0 From 18c35fc9ea9cdb7aa58ee6b2fc965df3f50f53b0 Mon Sep 17 00:00:00 2001 From: Jochen Ehret Date: Wed, 17 Sep 2025 11:26:27 +0200 Subject: [PATCH 2/2] Use specific go.mod files for setting up go * we have different go.mod files listed in the "matrix.dir" variable --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b221e226b..5916044e2 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-go@v6 with: - go-version-file: go.mod + go-version-file: ${{ matrix.dir }}/go.mod - run: go test -v -race ./... working-directory: ${{ matrix.dir }} @@ -41,7 +41,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-go@v6 with: - go-version-file: go.mod + go-version-file: ${{ matrix.dir }}/go.mod - uses: golangci/golangci-lint-action@v8.0.0 with: working-directory: ${{ matrix.dir }}