Skip to content

Commit 176b755

Browse files
update go packages
1 parent 1005734 commit 176b755

File tree

4 files changed

+521
-147
lines changed

4 files changed

+521
-147
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
12
# This GitHub action can publish assets for release when a tag is created.
23
# Currently its setup to run on any tag that matches the pattern "v*" (ie. v0.1.0).
34
#
4-
# This uses an action (paultyng/ghaction-import-gpg) that assumes you set your
5+
# This uses an action (hashicorp/ghaction-import-gpg) that assumes you set your
56
# private key in the `GPG_PRIVATE_KEY` secret and passphrase in the `PASSPHRASE`
67
# secret. If you would rather own your own GPG handling, please fork this action
78
# or use an alternative one for key handling.
@@ -20,7 +21,7 @@ jobs:
2021
steps:
2122
-
2223
name: Checkout
23-
uses: actions/checkout@v2
24+
uses: actions/checkout@v2.4.0
2425
-
2526
name: Unshallow
2627
run: git fetch --prune --unshallow
@@ -32,16 +33,18 @@ jobs:
3233
-
3334
name: Import GPG key
3435
id: import_gpg
35-
uses: paultyng/[email protected]
36+
uses: hashicorp/[email protected]
3637
env:
38+
# These secrets will need to be configured for the repository:
3739
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
3840
PASSPHRASE: ${{ secrets.PASSPHRASE }}
3941
-
4042
name: Run GoReleaser
41-
uses: goreleaser/goreleaser-action@v2
43+
uses: goreleaser/goreleaser-action@v2.8.0
4244
with:
4345
version: latest
4446
args: release --rm-dist
4547
env:
4648
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
47-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49+
# GitHub sets this automatically
50+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.goreleaser.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ checksum:
3838
signs:
3939
- artifacts: checksum
4040
args:
41-
# if you are using this is a GitHub action or some other automated pipeline, you
41+
# if you are using this in a GitHub action or some other automated pipeline, you
4242
# need to pass the batch flag to indicate its not interactive.
4343
- "--batch"
4444
- "--local-user"
@@ -48,7 +48,7 @@ signs:
4848
- "--detach-sign"
4949
- "${artifact}"
5050
release:
51-
# Visit your project's GitHub Releases page to publish this release.
52-
draft: false
51+
# If you want to manually examine the release before its live, uncomment this line:
52+
# draft: true
5353
changelog:
54-
skip: true
54+
skip: true

go.mod

Lines changed: 88 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,95 @@
11
module github.com/scottwinkler/terraform-provider-shell
22

3-
go 1.12
3+
go 1.17
44

55
require (
6-
github.com/fatih/color v1.9.0 // indirect
7-
github.com/hashicorp/go-hclog v0.12.0 // indirect
8-
github.com/hashicorp/hcl v1.0.0 // indirect
9-
github.com/hashicorp/terraform-plugin-sdk v1.7.0
10-
github.com/kr/pretty v0.2.0 // indirect
11-
github.com/mattn/go-isatty v0.0.12 // indirect
6+
github.com/hashicorp/terraform-plugin-sdk v1.17.2
127
github.com/mitchellh/go-linereader v0.0.0-20190213213312-1b945b3263eb
13-
github.com/rs/xid v1.2.1
14-
github.com/stretchr/testify v1.4.0
15-
github.com/tidwall/gjson v1.6.0
16-
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect
17-
golang.org/x/net v0.0.0-20191126235420-ef20fe5d7933 // indirect
18-
golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9 // indirect
19-
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
20-
gopkg.in/yaml.v2 v2.2.8 // indirect
8+
github.com/rs/xid v1.3.0
9+
github.com/stretchr/testify v1.7.0
10+
github.com/tidwall/gjson v1.11.0
2111
)
2212

23-
replace git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20180902110319-2566ecd5d999
13+
require (
14+
cloud.google.com/go v0.65.0 // indirect
15+
cloud.google.com/go/storage v1.10.0 // indirect
16+
github.com/Masterminds/goutils v1.1.0 // indirect
17+
github.com/Masterminds/semver v1.5.0 // indirect
18+
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
19+
github.com/agext/levenshtein v1.2.2 // indirect
20+
github.com/apparentlymart/go-cidr v1.1.0 // indirect
21+
github.com/apparentlymart/go-textseg/v12 v12.0.0 // indirect
22+
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
23+
github.com/armon/go-radix v1.0.0 // indirect
24+
github.com/aws/aws-sdk-go v1.37.0 // indirect
25+
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
26+
github.com/bgentry/speakeasy v0.1.0 // indirect
27+
github.com/davecgh/go-spew v1.1.1 // indirect
28+
github.com/fatih/color v1.7.0 // indirect
29+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
30+
github.com/golang/protobuf v1.4.2 // indirect
31+
github.com/google/go-cmp v0.5.5 // indirect
32+
github.com/google/uuid v1.1.2 // indirect
33+
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
34+
github.com/hashicorp/errwrap v1.0.0 // indirect
35+
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
36+
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
37+
github.com/hashicorp/go-getter v1.5.3 // indirect
38+
github.com/hashicorp/go-hclog v0.9.2 // indirect
39+
github.com/hashicorp/go-multierror v1.0.0 // indirect
40+
github.com/hashicorp/go-plugin v1.3.0 // indirect
41+
github.com/hashicorp/go-safetemp v1.0.0 // indirect
42+
github.com/hashicorp/go-uuid v1.0.1 // indirect
43+
github.com/hashicorp/go-version v1.3.0 // indirect
44+
github.com/hashicorp/hcl v0.0.0-20170504190234-a4b07c25de5f // indirect
45+
github.com/hashicorp/hcl/v2 v2.8.2 // indirect
46+
github.com/hashicorp/logutils v1.0.0 // indirect
47+
github.com/hashicorp/terraform-config-inspect v0.0.0-20191212124732-c6ae6269b9d7 // indirect
48+
github.com/hashicorp/terraform-exec v0.13.3 // indirect
49+
github.com/hashicorp/terraform-json v0.10.0 // indirect
50+
github.com/hashicorp/terraform-plugin-test/v2 v2.2.1 // indirect
51+
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect
52+
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
53+
github.com/huandu/xstrings v1.3.2 // indirect
54+
github.com/imdario/mergo v0.3.12 // indirect
55+
github.com/jmespath/go-jmespath v0.4.0 // indirect
56+
github.com/jstemmer/go-junit-report v0.9.1 // indirect
57+
github.com/klauspost/compress v1.11.2 // indirect
58+
github.com/mattn/go-colorable v0.1.1 // indirect
59+
github.com/mattn/go-isatty v0.0.5 // indirect
60+
github.com/mitchellh/cli v1.1.2 // indirect
61+
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
62+
github.com/mitchellh/copystructure v1.0.0 // indirect
63+
github.com/mitchellh/go-homedir v1.1.0 // indirect
64+
github.com/mitchellh/go-testing-interface v1.0.4 // indirect
65+
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
66+
github.com/mitchellh/mapstructure v1.1.2 // indirect
67+
github.com/mitchellh/reflectwalk v1.0.1 // indirect
68+
github.com/oklog/run v1.0.0 // indirect
69+
github.com/pmezard/go-difflib v1.0.0 // indirect
70+
github.com/posener/complete v1.2.1 // indirect
71+
github.com/spf13/afero v1.2.2 // indirect
72+
github.com/tidwall/match v1.1.1 // indirect
73+
github.com/tidwall/pretty v1.2.0 // indirect
74+
github.com/ulikunitz/xz v0.5.8 // indirect
75+
github.com/vmihailenco/msgpack/v4 v4.3.12 // indirect
76+
github.com/vmihailenco/tagparser v0.1.1 // indirect
77+
github.com/zclconf/go-cty v1.8.2 // indirect
78+
github.com/zclconf/go-cty-yaml v1.0.2 // indirect
79+
go.opencensus.io v0.22.4 // indirect
80+
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
81+
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
82+
golang.org/x/mod v0.3.0 // indirect
83+
golang.org/x/net v0.0.0-20210326060303-6b1517762897 // indirect
84+
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 // indirect
85+
golang.org/x/sys v0.0.0-20210324051608-47abb6519492 // indirect
86+
golang.org/x/text v0.3.5 // indirect
87+
golang.org/x/tools v0.0.0-20201028111035-eafbe7b904eb // indirect
88+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
89+
google.golang.org/api v0.34.0 // indirect
90+
google.golang.org/appengine v1.6.6 // indirect
91+
google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d // indirect
92+
google.golang.org/grpc v1.32.0 // indirect
93+
google.golang.org/protobuf v1.25.0 // indirect
94+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
95+
)

0 commit comments

Comments
 (0)