Skip to content

Commit 83eda54

Browse files
authored
Merge pull request reproio#88 from reproio/dependabot/go_modules/cloud.google.com/go/bigquery-1.43.0
Bump cloud.google.com/go/bigquery from 1.10.0 to 1.43.0
2 parents 46ee508 + 4ef23fe commit 83eda54

File tree

7 files changed

+97
-318
lines changed

7 files changed

+97
-318
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515

16-
- name: Set up Go 1.14
16+
- name: Set up Go 1.19
1717
uses: actions/setup-go@v1
1818
with:
19-
go-version: 1.14
19+
go-version: 1.19
2020
id: go
2121

2222
- name: Check out code into the Go module directory
@@ -37,7 +37,7 @@ jobs:
3737
uses: golangci/golangci-lint-action@v2
3838
env:
3939
GOROOT: ""
40-
40+
4141
- name: Test
4242
run: make test
4343

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@v2
1818
with:
19-
go-version: 1.14
19+
go-version: 1.19
2020
- name: Run GoReleaser
2121
uses: goreleaser/goreleaser-action@v2
2222
with:

columnifier/parquet.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package columnifier
22

33
import (
44
"io"
5-
"io/ioutil"
65
"os"
76

87
"github.com/xitongsys/parquet-go/marshal"
@@ -25,7 +24,7 @@ type parquetColumnifier struct {
2524

2625
// NewParquetColumnifier creates a new parquetColumnifier.
2726
func NewParquetColumnifier(st string, sf string, rt string, output string, config Config) (*parquetColumnifier, error) {
28-
schemaContent, err := ioutil.ReadFile(sf)
27+
schemaContent, err := os.ReadFile(sf)
2928
if err != nil {
3029
return nil, err
3130
}

columnifier/parquet_test.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package columnifier
33
import (
44
"bytes"
55
"encoding/json"
6-
"io/ioutil"
76
"os"
87
"testing"
98

@@ -440,7 +439,7 @@ func TestWriteClose(t *testing.T) {
440439
}
441440

442441
for _, c := range cases {
443-
out, err := ioutil.TempFile("", "out.parquet")
442+
out, err := os.CreateTemp("", "out.parquet")
444443
if err != nil {
445444
t.Fatal(err)
446445
}
@@ -492,7 +491,7 @@ func TestWriteClose_Errors(t *testing.T) {
492491
}
493492

494493
for _, c := range cases {
495-
out, err := ioutil.TempFile("", "out.parquet")
494+
out, err := os.CreateTemp("", "out.parquet")
496495
if err != nil {
497496
t.Fatal(err)
498497
}

go.mod

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,40 @@
11
module github.com/reproio/columnify
22

3-
go 1.14
3+
go 1.19
44

55
require (
6-
cloud.google.com/go/bigquery v1.10.0
6+
cloud.google.com/go/bigquery v1.43.0
77
github.com/Songmu/go-ltsv v0.0.0-20181014062614-c30af2b7b171
88
github.com/apache/arrow/go/arrow v0.0.0-20200504153628-d13e8f3ed647
99
github.com/linkedin/goavro/v2 v2.9.8
1010
github.com/vmihailenco/msgpack/v4 v4.3.12
1111
github.com/xitongsys/parquet-go v1.5.3
1212
github.com/xitongsys/parquet-go-source v0.0.0-20200225073416-429277801fe4
1313
)
14+
15+
require (
16+
cloud.google.com/go v0.104.0 // indirect
17+
cloud.google.com/go/compute v1.10.0 // indirect
18+
cloud.google.com/go/iam v0.5.0 // indirect
19+
github.com/apache/thrift v0.0.0-20181112125854-24918abba929 // indirect
20+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
21+
github.com/golang/protobuf v1.5.2 // indirect
22+
github.com/golang/snappy v0.0.1 // indirect
23+
github.com/google/go-cmp v0.5.9 // indirect
24+
github.com/google/uuid v1.3.0 // indirect
25+
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
26+
github.com/googleapis/gax-go/v2 v2.6.0 // indirect
27+
github.com/klauspost/compress v1.10.5 // indirect
28+
github.com/vmihailenco/tagparser v0.1.1 // indirect
29+
go.opencensus.io v0.23.0 // indirect
30+
golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458 // indirect
31+
golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1 // indirect
32+
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
33+
golang.org/x/text v0.3.7 // indirect
34+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
35+
google.golang.org/api v0.99.0 // indirect
36+
google.golang.org/appengine v1.6.7 // indirect
37+
google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b // indirect
38+
google.golang.org/grpc v1.50.1 // indirect
39+
google.golang.org/protobuf v1.28.1 // indirect
40+
)

0 commit comments

Comments
 (0)