Skip to content

Commit 95c77d1

Browse files
authored
Merge pull request #373 from bgilbert/msgv
Bump minimum Go version to 1.17
2 parents 32b3586 + 5ab0ec0 commit 95c77d1

File tree

7 files changed

+20
-18
lines changed

7 files changed

+20
-18
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Test build
1515
strategy:
1616
matrix:
17-
go-version: [1.15.x, 1.16.x, 1.17.x, 1.18.x]
17+
go-version: [1.17.x, 1.18.x]
1818
os: [ubuntu-latest]
1919
include:
2020
- go-version: 1.18.x

go.mod

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/coreos/butane
22

3-
go 1.15
3+
go 1.17
44

55
require (
66
github.com/clarketm/json v1.14.1
@@ -11,6 +11,14 @@ require (
1111
github.com/spf13/pflag v1.0.6-0.20210604193023-d5e0c0615ace
1212
github.com/stretchr/testify v1.8.0
1313
github.com/vincent-petithory/dataurl v1.0.0
14-
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
1514
gopkg.in/yaml.v3 v3.0.1
1615
)
16+
17+
require (
18+
github.com/aws/aws-sdk-go v1.30.28 // indirect
19+
github.com/coreos/go-json v0.0.0-20211020211907-c63f628265de // indirect
20+
github.com/coreos/go-systemd/v22 v22.0.0 // indirect
21+
github.com/davecgh/go-spew v1.1.1 // indirect
22+
github.com/pmezard/go-difflib v1.0.0 // indirect
23+
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
24+
)

vendor/github.com/coreos/go-json/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.

vendor/github.com/spf13/pflag/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.

vendor/github.com/spf13/pflag/go.sum

Whitespace-only changes.

vendor/gopkg.in/yaml.v3/go.mod

Lines changed: 0 additions & 5 deletions
This file was deleted.

vendor/modules.txt

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# github.com/aws/aws-sdk-go v1.30.28
2+
## explicit; go 1.11
23
github.com/aws/aws-sdk-go/aws/arn
34
# github.com/clarketm/json v1.14.1
45
## explicit
56
github.com/clarketm/json
67
# github.com/coreos/go-json v0.0.0-20211020211907-c63f628265de
8+
## explicit; go 1.15
79
github.com/coreos/go-json
810
# github.com/coreos/go-semver v0.3.0
911
## explicit
@@ -12,9 +14,10 @@ github.com/coreos/go-semver/semver
1214
## explicit
1315
github.com/coreos/go-systemd/unit
1416
# github.com/coreos/go-systemd/v22 v22.0.0
17+
## explicit; go 1.12
1518
github.com/coreos/go-systemd/v22/unit
1619
# github.com/coreos/ignition/v2 v2.14.0
17-
## explicit
20+
## explicit; go 1.15
1821
github.com/coreos/ignition/v2/config/merge
1922
github.com/coreos/ignition/v2/config/shared/errors
2023
github.com/coreos/ignition/v2/config/shared/validations
@@ -26,22 +29,24 @@ github.com/coreos/ignition/v2/config/v3_3/types
2629
github.com/coreos/ignition/v2/config/v3_4_experimental/types
2730
github.com/coreos/ignition/v2/config/validate
2831
# github.com/coreos/vcontext v0.0.0-20220603180515-2076d8d16945
29-
## explicit
32+
## explicit; go 1.15
3033
github.com/coreos/vcontext/json
3134
github.com/coreos/vcontext/path
3235
github.com/coreos/vcontext/report
3336
github.com/coreos/vcontext/tree
3437
github.com/coreos/vcontext/validate
3538
github.com/coreos/vcontext/yaml
3639
# github.com/davecgh/go-spew v1.1.1
40+
## explicit
3741
github.com/davecgh/go-spew/spew
3842
# github.com/pmezard/go-difflib v1.0.0
43+
## explicit
3944
github.com/pmezard/go-difflib/difflib
4045
# github.com/spf13/pflag v1.0.6-0.20210604193023-d5e0c0615ace
41-
## explicit
46+
## explicit; go 1.12
4247
github.com/spf13/pflag
4348
# github.com/stretchr/testify v1.8.0
44-
## explicit
49+
## explicit; go 1.13
4550
github.com/stretchr/testify/assert
4651
# github.com/vincent-petithory/dataurl v1.0.0
4752
## explicit

0 commit comments

Comments
 (0)