From 065bb4d2262c28140f2d6d8163919524cf0f9357 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 08:31:44 +0000 Subject: [PATCH 1/2] Bump actions/setup-go from 5.5.0 to 6.0.0 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5.5.0 to 6.0.0. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5.5.0...v6.0.0) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05dbc45..1b68273 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - name: Checkout uses: actions/checkout@v5.0.0 - name: Setup Go ${{ matrix.go-version }} - uses: actions/setup-go@v5.5.0 + uses: actions/setup-go@v6.0.0 with: go-version: ${{ matrix.go-version }} check-latest: true From 396e200a1860c85679acf149c58d01cfd384cdf0 Mon Sep 17 00:00:00 2001 From: berquerant Date: Thu, 11 Sep 2025 00:59:22 +0900 Subject: [PATCH 2/2] Use go-version-file --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b68273..7a0266a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,17 +15,13 @@ jobs: build: timeout-minutes: 5 runs-on: ubuntu-latest - strategy: - matrix: - go-version: - - "1.24" steps: - name: Checkout uses: actions/checkout@v5.0.0 - - name: Setup Go ${{ matrix.go-version }} + - name: Setup Go uses: actions/setup-go@v6.0.0 with: - go-version: ${{ matrix.go-version }} + go-version-file: "go.mod" check-latest: true cache-dependency-path: go.sum - name: Display Go version