From a1dea3b07e984817672557fabf4a1d03b5e646b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Sep 2025 23:02:23 +0000 Subject: [PATCH] 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/samples-go-client-echo-api.yaml | 2 +- .github/workflows/samples-go-client.yaml | 2 +- .github/workflows/samples-go-gin.yaml | 2 +- .github/workflows/samples-go.yaml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/samples-go-client-echo-api.yaml b/.github/workflows/samples-go-client-echo-api.yaml index 8de98b1e72b7..9ec8ed9e8ed4 100644 --- a/.github/workflows/samples-go-client-echo-api.yaml +++ b/.github/workflows/samples-go-client-echo-api.yaml @@ -17,7 +17,7 @@ jobs: - samples/client/echo_api/go steps: - uses: actions/checkout@v5 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version: "stable" - name: Setup node.js diff --git a/.github/workflows/samples-go-client.yaml b/.github/workflows/samples-go-client.yaml index dd58e84245dc..987576b4ab5b 100644 --- a/.github/workflows/samples-go-client.yaml +++ b/.github/workflows/samples-go-client.yaml @@ -19,7 +19,7 @@ jobs: - 'samples/openapi3/client/petstore/go/go-petstore-aws-signature/' steps: - uses: actions/checkout@v5 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 - run: go version - name: Install Dependencies working-directory: ${{ matrix.sample }} diff --git a/.github/workflows/samples-go-gin.yaml b/.github/workflows/samples-go-gin.yaml index 6abb723d67fb..e9ac50e6cb23 100644 --- a/.github/workflows/samples-go-gin.yaml +++ b/.github/workflows/samples-go-gin.yaml @@ -22,7 +22,7 @@ jobs: - samples/server/petstore/go-gin-api-server-interface-only/ steps: - uses: actions/checkout@v5 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version: "stable" - run: go version diff --git a/.github/workflows/samples-go.yaml b/.github/workflows/samples-go.yaml index c077ee850b38..4c0fdaf1d8f3 100644 --- a/.github/workflows/samples-go.yaml +++ b/.github/workflows/samples-go.yaml @@ -28,7 +28,7 @@ jobs: - samples/server/others/go-server/no-body-path-params/ steps: - uses: actions/checkout@v5 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version: "stable" - run: go version @@ -49,7 +49,7 @@ jobs: steps: - uses: actions/checkout@v5 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ matrix.go-version }} - name: Install Dependencies