From 2ba8f7d90a5d736237e8e054c0423cd2d3167335 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 9 Oct 2025 11:03:57 +0000 Subject: [PATCH] Update actions/setup-go action to v6 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/go.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9b409d1..a0981ce 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -16,7 +16,7 @@ jobs: - name: Check-out code uses: actions/checkout@v5 - name: Set up Go using version from go.mod - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: 'go.mod' - name: Run unit tests @@ -29,7 +29,7 @@ jobs: - name: Check-out code uses: actions/checkout@v5 - name: Set up Go using version from go.mod - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: 'go.mod' - name: Check tidiness @@ -42,7 +42,7 @@ jobs: - name: Check-out code uses: actions/checkout@v5 - name: Set up Go using version from go.mod - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: 'go.mod' - name: Run code linters