From 52ca5a3c99bc4762b92ee16d12a8c3c6fa2fa339 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot Date: Mon, 15 Dec 2025 10:44:57 +0000 Subject: [PATCH] chore(deps): Update actions/setup-go action to v6 --- .github/workflows/go_mod_tidy_examples.yml | 2 +- .github/workflows/lint_golang.yml | 2 +- .github/workflows/unittest.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go_mod_tidy_examples.yml b/.github/workflows/go_mod_tidy_examples.yml index 1643c42b79..bc535b1c31 100644 --- a/.github/workflows/go_mod_tidy_examples.yml +++ b/.github/workflows/go_mod_tidy_examples.yml @@ -21,7 +21,7 @@ jobs: with: token: ${{ secrets.GH_CQ_BOT }} - name: Set up Go 1.x - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: go.mod cache: false diff --git a/.github/workflows/lint_golang.yml b/.github/workflows/lint_golang.yml index 09435a9432..7f07f47a57 100644 --- a/.github/workflows/lint_golang.yml +++ b/.github/workflows/lint_golang.yml @@ -17,7 +17,7 @@ jobs: timeout-minutes: 10 steps: - uses: actions/checkout@v5 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version-file: go.mod - name: golangci-lint diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index 26edabeec2..2612e88493 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -21,7 +21,7 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v5 - name: Set up Go 1.x - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: go.mod - run: go mod download