From 68cfdccb396154dc0dfca5f5841be5211b38db07 Mon Sep 17 00:00:00 2001 From: CloudQuery Bot Date: Wed, 1 Oct 2025 01:53:09 +0000 Subject: [PATCH] chore(deps): Update actions/setup-go action to v6 --- .github/workflows/gen-client.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/gen-client.yml b/.github/workflows/gen-client.yml index ca462be..96bfd93 100644 --- a/.github/workflows/gen-client.yml +++ b/.github/workflows/gen-client.yml @@ -17,7 +17,7 @@ jobs: curl -H "Authorization: token ${{ secrets.GH_CQ_BOT }}" https://raw.githubusercontent.com/cloudquery/cloud/main/platform/internal/servergen/spec.json -o spec.json - name: Set up Go 1.x - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: go.mod diff --git a/.github/workflows/lint_golang.yml b/.github/workflows/lint_golang.yml index 0b3c268..9c399b1 100644 --- a/.github/workflows/lint_golang.yml +++ b/.github/workflows/lint_golang.yml @@ -14,7 +14,7 @@ jobs: timeout-minutes: 10 steps: - uses: actions/checkout@v4 - - 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 2dff847..e9cfd76 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -19,7 +19,7 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v4 - 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