Skip to content

Commit fd8c56c

Browse files
authored
chore(plugin): bump Go version to 1.17 (#30)
1 parent 491d8fc commit fd8c56c

File tree

3 files changed

+81
-9
lines changed

3 files changed

+81
-9
lines changed

.github/workflows/release.yaml

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.16
19+
go-version: 1.17
2020

2121
- name: Describe plugin
2222
id: plugin_describe

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77

88
strategy:
99
matrix:
10-
go-version: [1.16.x]
10+
go-version: [1.17.x]
1111
os: [ubuntu-latest, macos-latest, windows-latest]
1212

1313
runs-on: ${{ matrix.os }}

go.mod

Lines changed: 79 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,109 @@
11
module github.com/UpCloudLtd/packer-plugin-upcloud
22

3-
go 1.16
3+
go 1.17
44

55
require (
6-
cloud.google.com/go/storage v1.18.2 // indirect
76
github.com/UpCloudLtd/upcloud-go-api/v4 v4.5.2
7+
github.com/hashicorp/hcl/v2 v2.12.0
8+
github.com/hashicorp/packer-plugin-sdk v0.2.12
9+
github.com/stretchr/testify v1.7.0
10+
github.com/zclconf/go-cty v1.10.0
11+
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
12+
)
13+
14+
require (
15+
cloud.google.com/go v0.97.0 // indirect
16+
cloud.google.com/go/storage v1.18.2 // indirect
17+
github.com/Azure/go-ntlmssp v0.0.0-20200615164410-66371956d46c // indirect
18+
github.com/ChrisTrenkamp/goxpath v0.0.0-20210404020558-97928f7e12b6 // indirect
19+
github.com/agext/levenshtein v1.2.3 // indirect
20+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
821
github.com/armon/go-metrics v0.3.10 // indirect
22+
github.com/armon/go-radix v1.0.0 // indirect
923
github.com/aws/aws-sdk-go v1.42.4 // indirect
24+
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
25+
github.com/blang/semver v3.5.1+incompatible // indirect
26+
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
1027
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
1128
github.com/cespare/xxhash/v2 v2.1.2 // indirect
29+
github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4 // indirect
30+
github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1 // indirect
31+
github.com/davecgh/go-spew v1.1.1 // indirect
32+
github.com/dylanmei/iso8601 v0.1.0 // indirect
1233
github.com/envoyproxy/go-control-plane v0.10.0 // indirect
1334
github.com/envoyproxy/protoc-gen-validate v0.6.2 // indirect
1435
github.com/fatih/color v1.13.0 // indirect
36+
github.com/gofrs/flock v0.8.1 // indirect
1537
github.com/gofrs/uuid v4.1.0+incompatible // indirect
38+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
39+
github.com/golang/protobuf v1.5.2 // indirect
40+
github.com/golang/snappy v0.0.4 // indirect
41+
github.com/google/go-cmp v0.5.6 // indirect
42+
github.com/google/uuid v1.3.0 // indirect
43+
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
1644
github.com/hashicorp/consul/api v1.11.0 // indirect
45+
github.com/hashicorp/errwrap v1.1.0 // indirect
46+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
47+
github.com/hashicorp/go-getter/gcs/v2 v2.0.0-20200604122502-a6995fa1edad // indirect
48+
github.com/hashicorp/go-getter/s3/v2 v2.0.0-20200604122502-a6995fa1edad // indirect
49+
github.com/hashicorp/go-getter/v2 v2.0.2 // indirect
1750
github.com/hashicorp/go-hclog v1.0.0 // indirect
51+
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
52+
github.com/hashicorp/go-multierror v1.1.1 // indirect
53+
github.com/hashicorp/go-plugin v1.4.3 // indirect
54+
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
55+
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
56+
github.com/hashicorp/go-safetemp v1.0.0 // indirect
57+
github.com/hashicorp/go-secure-stdlib/mlock v0.1.1 // indirect
1858
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.2 // indirect
19-
github.com/hashicorp/hcl/v2 v2.12.0
20-
github.com/hashicorp/packer-plugin-sdk v0.2.12
59+
github.com/hashicorp/go-secure-stdlib/strutil v0.1.1 // indirect
60+
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
61+
github.com/hashicorp/go-uuid v1.0.2 // indirect
62+
github.com/hashicorp/go-version v1.3.0 // indirect
63+
github.com/hashicorp/golang-lru v0.5.4 // indirect
64+
github.com/hashicorp/hcl v1.0.0 // indirect
2165
github.com/hashicorp/serf v0.9.6 // indirect
2266
github.com/hashicorp/vault/api v1.3.0 // indirect
67+
github.com/hashicorp/vault/sdk v0.3.0 // indirect
2368
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect
69+
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869 // indirect
70+
github.com/jmespath/go-jmespath v0.4.0 // indirect
71+
github.com/kr/fs v0.1.0 // indirect
72+
github.com/masterzen/simplexml v0.0.0-20190410153822-31eea3082786 // indirect
73+
github.com/masterzen/winrm v0.0.0-20210623064412-3b76017826b0 // indirect
2474
github.com/mattn/go-colorable v0.1.11 // indirect
75+
github.com/mattn/go-isatty v0.0.14 // indirect
2576
github.com/mitchellh/copystructure v1.2.0 // indirect
77+
github.com/mitchellh/go-fs v0.0.0-20180402235330-b7b9ca407fff // indirect
78+
github.com/mitchellh/go-homedir v1.1.0 // indirect
79+
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
80+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
81+
github.com/mitchellh/iochan v1.0.0 // indirect
82+
github.com/mitchellh/mapstructure v1.4.2 // indirect
83+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
84+
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d // indirect
2685
github.com/oklog/run v1.1.0 // indirect
86+
github.com/packer-community/winrmcp v0.0.0-20180921211025-c76d91c1e7db // indirect
87+
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
2788
github.com/pkg/sftp v1.13.4 // indirect
28-
github.com/stretchr/testify v1.7.0
29-
github.com/zclconf/go-cty v1.10.0
30-
golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f
89+
github.com/pmezard/go-difflib v1.0.0 // indirect
90+
github.com/ryanuber/go-glob v1.0.0 // indirect
91+
github.com/ugorji/go/codec v1.2.6 // indirect
92+
github.com/ulikunitz/xz v0.5.10 // indirect
93+
go.opencensus.io v0.23.0 // indirect
94+
go.uber.org/atomic v1.9.0 // indirect
95+
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
3196
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
3297
golang.org/x/sys v0.0.0-20211113001501-0c823b97ae02 // indirect
3398
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
99+
golang.org/x/text v0.3.7 // indirect
100+
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
101+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
34102
google.golang.org/api v0.60.0 // indirect
103+
google.golang.org/appengine v1.6.7 // indirect
35104
google.golang.org/genproto v0.0.0-20211112145013-271947fe86fd // indirect
36105
google.golang.org/grpc v1.42.0 // indirect
106+
google.golang.org/protobuf v1.27.1 // indirect
107+
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
108+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
37109
)

0 commit comments

Comments
 (0)