Skip to content

Commit 2e10051

Browse files
Excavator: Upgrade to Go 1.17 (#131)
1 parent e54d409 commit 2e10051

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Set up Go
2525
uses: actions/setup-go@v2
2626
with:
27-
go-version: 1.16
27+
go-version: 1.17
2828

2929
- name: Cache Godel assets
3030
uses: actions/cache@v2

.palantir/go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
go1.16.12
1+
go1.17.6

go.mod

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/palantir/go-githubapp
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/alexedwards/scs v1.4.1
@@ -13,8 +13,21 @@ require (
1313
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
1414
github.com/rs/zerolog v1.26.1
1515
github.com/shurcooL/githubv4 v0.0.0-20220115235240-a14260e6f8a2
16-
github.com/shurcooL/graphql v0.0.0-20181231061246-d48a9a75455f // indirect
1716
goji.io v2.0.2+incompatible
1817
golang.org/x/oauth2 v0.0.0-20210113205817-d3ed898aa8a3
1918
gopkg.in/yaml.v2 v2.4.0
2019
)
20+
21+
require (
22+
github.com/bluekeyes/hatpear v0.1.1 // indirect
23+
github.com/golang-jwt/jwt/v4 v4.1.0 // indirect
24+
github.com/golang/protobuf v1.4.2 // indirect
25+
github.com/google/go-querystring v1.1.0 // indirect
26+
github.com/rs/xid v1.3.0 // indirect
27+
github.com/shurcooL/graphql v0.0.0-20181231061246-d48a9a75455f // indirect
28+
golang.org/x/crypto v0.0.0-20211215165025-cf75a172585e // indirect
29+
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
30+
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e // indirect
31+
google.golang.org/appengine v1.6.7 // indirect
32+
google.golang.org/protobuf v1.25.0 // indirect
33+
)

0 commit comments

Comments
 (0)