Skip to content

Commit 133f40b

Browse files
author
Simon
committed
chore(build): upgrade to Go 1.19.2
1 parent 36ce05e commit 133f40b

File tree

6 files changed

+60
-387
lines changed

6 files changed

+60
-387
lines changed

.github/workflows/linters.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
66
validate-commits:
77
runs-on: ubuntu-latest
88
steps:
9-
- name: Set up Go 1.13
9+
- name: Set up Go
1010
uses: actions/setup-go@v3
1111
with:
12-
go-version: 1.16.x
12+
go-version: 1.19.x
1313
- name: Check out code into the Go module directory
1414
uses: actions/checkout@v3
1515
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v3
1919
with:
20-
go-version: 1.16
20+
go-version: 1.19
2121

2222
- name: Run GoReleaser
2323
uses: goreleaser/goreleaser-action@v3
@@ -30,4 +30,4 @@ jobs:
3030
- name: Release Notary Action
3131
uses: docker://outillage/release-notary:0.9.4
3232
env:
33-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,11 @@ jobs:
77
name: "Go Test"
88
runs-on: ubuntu-latest
99

10-
strategy:
11-
matrix:
12-
go-version: [1.16.x]
13-
1410
steps:
1511
- name: Install Go
1612
uses: actions/setup-go@v3
1713
with:
18-
go-version: ${{ matrix.go-version }}
14+
go-version: 1.19.x
1915
- name: Check out code into the Go module directory
2016
uses: actions/checkout@v3
2117
- uses: actions/cache@v3
@@ -36,7 +32,7 @@ jobs:
3632
- name: Install Go
3733
uses: actions/setup-go@v3
3834
with:
39-
go-version: 1.16.x
35+
go-version: 1.19.x
4036
- name: Check out code into the Go module directory
4137
uses: actions/checkout@v3
4238
- uses: actions/cache@v3

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
golang 1.16.7
1+
golang 1.19.2

go.mod

Lines changed: 52 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/aevea/commitsar
22

3-
go 1.16
3+
go 1.19
44

55
require (
66
github.com/aevea/git/v3 v3.1.0
@@ -9,15 +9,63 @@ require (
99
github.com/aevea/quoad v0.4.0
1010
github.com/apex/log v1.9.0
1111
github.com/go-git/go-git/v5 v5.4.2
12-
github.com/go-openapi/strfmt v0.19.5 // indirect
1312
github.com/google/go-github/v32 v32.1.0
14-
github.com/google/go-querystring v1.1.0 // indirect
1513
github.com/jedib0t/go-pretty v4.3.0+incompatible
1614
github.com/logrusorgru/aurora v2.0.3+incompatible
1715
github.com/magefile/mage v1.14.0
18-
github.com/mattn/go-runewidth v0.0.9 // indirect
1916
github.com/spf13/cobra v1.6.0
2017
github.com/spf13/viper v1.13.0
2118
github.com/stretchr/testify v1.8.0
2219
golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094
2320
)
21+
22+
require (
23+
github.com/Microsoft/go-winio v0.4.16 // indirect
24+
github.com/ProtonMail/go-crypto v0.0.0-20210428141323-04723f9f07d7 // indirect
25+
github.com/acomagu/bufpipe v1.0.3 // indirect
26+
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect
27+
github.com/davecgh/go-spew v1.1.1 // indirect
28+
github.com/emirpasic/gods v1.12.0 // indirect
29+
github.com/fatih/color v1.13.0 // indirect
30+
github.com/fsnotify/fsnotify v1.5.4 // indirect
31+
github.com/go-git/gcfg v1.5.0 // indirect
32+
github.com/go-git/go-billy/v5 v5.3.1 // indirect
33+
github.com/go-openapi/errors v0.19.2 // indirect
34+
github.com/go-openapi/strfmt v0.19.5 // indirect
35+
github.com/go-stack/stack v1.8.0 // indirect
36+
github.com/golang/protobuf v1.5.2 // indirect
37+
github.com/google/go-querystring v1.1.0 // indirect
38+
github.com/hashicorp/hcl v1.0.0 // indirect
39+
github.com/imdario/mergo v0.3.12 // indirect
40+
github.com/inconshreveable/mousetrap v1.0.1 // indirect
41+
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
42+
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
43+
github.com/magiconair/properties v1.8.6 // indirect
44+
github.com/mattn/go-colorable v0.1.12 // indirect
45+
github.com/mattn/go-isatty v0.0.14 // indirect
46+
github.com/mattn/go-runewidth v0.0.9 // indirect
47+
github.com/mitchellh/go-homedir v1.1.0 // indirect
48+
github.com/mitchellh/mapstructure v1.5.0 // indirect
49+
github.com/pelletier/go-toml v1.9.5 // indirect
50+
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
51+
github.com/pkg/errors v0.9.1 // indirect
52+
github.com/pmezard/go-difflib v1.0.0 // indirect
53+
github.com/sergi/go-diff v1.1.0 // indirect
54+
github.com/spf13/afero v1.8.2 // indirect
55+
github.com/spf13/cast v1.5.0 // indirect
56+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
57+
github.com/spf13/pflag v1.0.5 // indirect
58+
github.com/subosito/gotenv v1.4.1 // indirect
59+
github.com/xanzy/ssh-agent v0.3.0 // indirect
60+
go.mongodb.org/mongo-driver v1.0.3 // indirect
61+
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect
62+
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e // indirect
63+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
64+
golang.org/x/text v0.3.7 // indirect
65+
google.golang.org/appengine v1.6.7 // indirect
66+
google.golang.org/protobuf v1.28.0 // indirect
67+
gopkg.in/ini.v1 v1.67.0 // indirect
68+
gopkg.in/warnings.v0 v0.1.2 // indirect
69+
gopkg.in/yaml.v2 v2.4.0 // indirect
70+
gopkg.in/yaml.v3 v3.0.1 // indirect
71+
)

0 commit comments

Comments
 (0)