Skip to content

Commit 4cf983e

Browse files
committed
fix: bump more deps
1 parent 6c7b4d6 commit 4cf983e

File tree

5 files changed

+32
-80
lines changed

5 files changed

+32
-80
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: Binaries Release
6969
uses: goreleaser/[email protected]
7070
with:
71-
version: ~> 0.175
71+
version: ~> 1.5.0
7272
args: release --rm-dist
7373
env:
7474
GITHUB_TOKEN: ${{ secrets.API_GITHUB_TOKEN }}

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ jobs:
4545
if: github.event_name != 'pull_request'
4646
uses: cycjimmy/[email protected]
4747
with:
48-
semantic_version: 17.4
48+
semantic_version: 19.0.2
4949
env:
5050
GITHUB_TOKEN: ${{ secrets.API_GITHUB_TOKEN }}

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.17.5-alpine AS builder
1+
FROM golang:1.17.8-alpine AS builder
22

33
WORKDIR /src
44
COPY . .

go.mod

+10-24
Original file line numberDiff line numberDiff line change
@@ -5,56 +5,42 @@ go 1.17
55
replace github.com/ViRb3/wgcf/openapi => ./openapi
66

77
require (
8-
github.com/ViRb3/optic-go v0.0.0-20210222034258-dd1353e31eb5
8+
github.com/ViRb3/optic-go v0.0.0-20220306155148-a12b96393ec7
99
github.com/ViRb3/sling/v2 v2.0.2
10-
github.com/ViRb3/wgcf/openapi v0.0.0-20210824130559-ce84cf0b7529
10+
github.com/ViRb3/wgcf/openapi v0.0.0-20211225133810-ecf3b62ea61e
1111
github.com/manifoldco/promptui v0.9.0
1212
github.com/pkg/errors v0.9.1
1313
github.com/spf13/cobra v1.3.0
1414
github.com/spf13/viper v1.10.1
15-
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa
15+
golang.org/x/crypto v0.0.0-20220214200702-86341886e292
1616
gopkg.in/yaml.v2 v2.4.0
1717
)
1818

1919
require (
20-
cloud.google.com/go v0.99.0 // indirect
21-
cloud.google.com/go/storage v1.18.2 // indirect
22-
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
23-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
2420
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
25-
github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4 // indirect
26-
github.com/cncf/xds/go v0.0.0-20211216145620-d92e9ce0af51 // indirect
27-
github.com/envoyproxy/go-control-plane v0.10.1 // indirect
28-
github.com/envoyproxy/protoc-gen-validate v0.6.2 // indirect
2921
github.com/fsnotify/fsnotify v1.5.1 // indirect
30-
github.com/getkin/kin-openapi v0.28.0 // indirect
22+
github.com/getkin/kin-openapi v0.90.0 // indirect
3123
github.com/ghodss/yaml v1.0.0 // indirect
32-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
24+
github.com/go-openapi/jsonpointer v0.19.5 // indirect
25+
github.com/go-openapi/swag v0.19.5 // indirect
3326
github.com/golang/protobuf v1.5.2 // indirect
34-
github.com/google/go-cmp v0.5.6 // indirect
3527
github.com/google/go-querystring v1.0.0 // indirect
36-
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
37-
github.com/googleapis/google-cloud-go-testing v0.0.0-20210719221736-1c9a4c676720 // indirect
3828
github.com/hashicorp/hcl v1.0.0 // indirect
3929
github.com/inconshreveable/mousetrap v1.0.0 // indirect
4030
github.com/magiconair/properties v1.8.5 // indirect
31+
github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e // indirect
4132
github.com/mitchellh/mapstructure v1.4.3 // indirect
4233
github.com/pelletier/go-toml v1.9.4 // indirect
43-
github.com/spf13/afero v1.7.0 // indirect
34+
github.com/spf13/afero v1.6.0 // indirect
4435
github.com/spf13/cast v1.4.1 // indirect
4536
github.com/spf13/jwalterweatherman v1.1.0 // indirect
4637
github.com/spf13/pflag v1.0.5 // indirect
4738
github.com/subosito/gotenv v1.2.0 // indirect
48-
go.opencensus.io v0.23.0 // indirect
49-
golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect
39+
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
5040
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
51-
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
41+
golang.org/x/sys v0.0.0-20211210111614-af8b64212486 // indirect
5242
golang.org/x/text v0.3.7 // indirect
53-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
54-
google.golang.org/api v0.63.0 // indirect
5543
google.golang.org/appengine v1.6.7 // indirect
56-
google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb // indirect
57-
google.golang.org/grpc v1.43.0 // indirect
5844
google.golang.org/protobuf v1.27.1 // indirect
5945
gopkg.in/ini.v1 v1.66.2 // indirect
6046
)

0 commit comments

Comments
 (0)