-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade golang packages and github worfklow
- Loading branch information
Showing
5 changed files
with
121 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,14 +17,13 @@ jobs: | |
strategy: | ||
matrix: | ||
go-version: | ||
- 1.20.14 | ||
- 1.21.9 | ||
- 1.22.2 | ||
- 1.21.10 | ||
- 1.22.3 | ||
|
||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].6 | ||
- name: Setup Go ${{ matrix.go-version }} | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
|
||
|
@@ -44,15 +43,13 @@ jobs: | |
name: lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].6 | ||
- name: Setup Go | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
go-version: 1.20.14 | ||
go-version: 1.21.10 | ||
- name: Run golangci-lint | ||
uses: golangci/golangci-lint-action@v4.0.0 | ||
uses: golangci/golangci-lint-action@v6.0.1 | ||
with: | ||
version: v1.53.3 | ||
skip-pkg-cache: true | ||
skip-build-cache: true | ||
version: v1.59.0 | ||
args: --timeout=10m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,16 +17,16 @@ jobs: | |
goreleaser: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].6 | ||
with: | ||
fetch-depth: 0 | ||
- run: git fetch --force --tags | ||
- name: Setup Go | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].1 | ||
with: | ||
go-version: 1.20.14 | ||
go-version: 1.21.10 | ||
- name: Execute GoReleaser | ||
uses: goreleaser/goreleaser-action@v5.0.0 | ||
uses: goreleaser/goreleaser-action@v5.1.0 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
distribution: goreleaser | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,62 @@ | ||
module github.com/wintermi/bq2csv | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
toolchain go1.22.3 | ||
|
||
require ( | ||
cloud.google.com/go/bigquery v1.60.0 | ||
github.com/rs/zerolog v1.32.0 | ||
google.golang.org/api v0.172.0 | ||
cloud.google.com/go/bigquery v1.61.0 | ||
github.com/rs/zerolog v1.33.0 | ||
google.golang.org/api v0.181.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.112.2 // indirect | ||
cloud.google.com/go/compute v1.25.1 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
cloud.google.com/go/iam v1.1.7 // indirect | ||
cloud.google.com/go v0.114.0 // indirect | ||
cloud.google.com/go/auth v0.4.2 // indirect | ||
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect | ||
cloud.google.com/go/compute v1.27.0 // indirect | ||
cloud.google.com/go/compute/metadata v0.3.0 // indirect | ||
cloud.google.com/go/iam v1.1.8 // indirect | ||
github.com/apache/arrow/go/v14 v14.0.2 // indirect | ||
github.com/apache/arrow/go/v15 v15.0.2 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/goccy/go-json v0.10.2 // indirect | ||
github.com/goccy/go-json v0.10.3 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/flatbuffers v24.3.25+incompatible // indirect | ||
github.com/google/s2a-go v0.1.7 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.3 // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.4 // indirect | ||
github.com/klauspost/compress v1.17.8 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.7 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.21 // indirect | ||
github.com/zeebo/xxh3 v1.0.2 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect | ||
go.opentelemetry.io/otel v1.24.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.24.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.24.0 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/mod v0.16.0 // indirect | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/oauth2 v0.18.0 // indirect | ||
golang.org/x/sync v0.6.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.52.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.52.0 // indirect | ||
go.opentelemetry.io/otel v1.27.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.27.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.27.0 // indirect | ||
golang.org/x/crypto v0.23.0 // indirect | ||
golang.org/x/exp v0.0.0-20240525044651-4c93da0ed11d // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/oauth2 v0.20.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
golang.org/x/time v0.5.0 // indirect | ||
golang.org/x/tools v0.19.0 // indirect | ||
golang.org/x/tools v0.21.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/genproto v0.0.0-20240401170217-c3f982113cda // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240401170217-c3f982113cda // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda // indirect | ||
google.golang.org/grpc v1.63.0 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
google.golang.org/genproto v0.0.0-20240521202816-d264139d666e // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240521202816-d264139d666e // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240521202816-d264139d666e // indirect | ||
google.golang.org/grpc v1.64.0 // indirect | ||
google.golang.org/protobuf v1.34.1 // indirect | ||
) |
Oops, something went wrong.