Skip to content

Commit 0baa9b4

Browse files
authored
Merge branch 'main' into renovate/actions-checkout-6.x
2 parents 734e176 + ec5df07 commit 0baa9b4

6 files changed

Lines changed: 10 additions & 12 deletions

File tree

.github/workflows/gen-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
curl -H "Authorization: token ${{ secrets.GH_CQ_BOT }}" https://raw.githubusercontent.com/cloudquery/cloud/main/platform/internal/servergen/spec.json -o spec.json
1818
1919
- name: Set up Go 1.x
20-
uses: actions/setup-go@v5
20+
uses: actions/setup-go@v6
2121
with:
2222
go-version-file: go.mod
2323

.github/workflows/lint_golang.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
timeout-minutes: 10
1515
steps:
1616
- uses: actions/checkout@v6
17-
- uses: actions/setup-go@v5
17+
- uses: actions/setup-go@v6
1818
with:
1919
go-version-file: go.mod
2020
- name: golangci-lint
21-
uses: golangci/golangci-lint-action@v8
21+
uses: golangci/golangci-lint-action@v9
2222
with:
23-
version: v2.5.0
23+
version: v2.6.2

.github/workflows/release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
prerelease: true
3131
- name: Trigger Renovate
32-
uses: actions/github-script@v7
32+
uses: actions/github-script@v8
3333
if: steps.release.outputs.release_created && steps.semver_parser.outputs.prerelease == ''
3434
with:
3535
github-token: ${{ secrets.GH_CQ_BOT }}

.github/workflows/unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Check out code into the Go module directory
2020
uses: actions/checkout@v6
2121
- name: Set up Go 1.x
22-
uses: actions/setup-go@v5
22+
uses: actions/setup-go@v6
2323
with:
2424
go-version-file: go.mod
2525
- run: go mod download

go.mod

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
module github.com/cloudquery/cloudquery-platform-api-go
22

3-
go 1.23
4-
5-
toolchain go1.23.10
3+
go 1.25.4
64

75
require (
86
github.com/adrg/xdg v0.5.3
9-
github.com/cloudquery/cloudquery-api-go v1.14.5
7+
github.com/cloudquery/cloudquery-api-go v1.14.6
108
github.com/hashicorp/go-retryablehttp v0.7.8
119
github.com/oapi-codegen/runtime v1.1.2
1210
github.com/stretchr/testify v1.11.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ github.com/adrg/xdg v0.5.3/go.mod h1:nlTsY+NNiCBGCK2tpm09vRqfVzrc2fLmXGpBLF0zlTQ
44
github.com/apapsch/go-jsonmerge/v2 v2.0.0 h1:axGnT1gRIfimI7gJifB699GoE/oq+F2MU7Dml6nw9rQ=
55
github.com/apapsch/go-jsonmerge/v2 v2.0.0/go.mod h1:lvDnEdqiQrp0O42VQGgmlKpxL1AP2+08jFMw88y4klk=
66
github.com/bmatcuk/doublestar v1.1.1/go.mod h1:UD6OnuiIn0yFxxA2le/rnRU1G4RaI4UvFv1sNto9p6w=
7-
github.com/cloudquery/cloudquery-api-go v1.14.5 h1:XTQwTvRrAdCQkWfs0MQqi4hf756Hg1CFTszh7NtZMAw=
8-
github.com/cloudquery/cloudquery-api-go v1.14.5/go.mod h1:d+I8E+z3vmvTvCNXZ5YNhxV9InY/i1siXa0vCYq+ABk=
7+
github.com/cloudquery/cloudquery-api-go v1.14.6 h1:lY0ndk5XAe84EronTCg8AnB40FwHCbAYpM4QEPzEb9E=
8+
github.com/cloudquery/cloudquery-api-go v1.14.6/go.mod h1:d+I8E+z3vmvTvCNXZ5YNhxV9InY/i1siXa0vCYq+ABk=
99
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1010
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
1111
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

0 commit comments

Comments
 (0)