Skip to content

Commit dfa7f8b

Browse files
committed
Up deps
1 parent ba30b27 commit dfa7f8b

File tree

3 files changed

+34
-926
lines changed

3 files changed

+34
-926
lines changed

.github/workflows/releaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Set up Go
2323
uses: actions/setup-go@v2
2424
with:
25-
go-version: 1.17
25+
go-version: 1.18
2626
-
2727
name: Set AUTOUPDATE_CHANNEL on tags
2828
run: echo "AUTOUPDATE_CHANNEL=stable" >> $GITHUB_ENV

go.mod

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/symfony-cli/symfony-cli
22

33
require (
4-
github.com/compose-spec/compose-go v1.1.0
5-
github.com/docker/docker v20.10.13+incompatible
6-
github.com/elazarl/goproxy v0.0.0-20220317163658-f5c0d0953e10
4+
github.com/compose-spec/compose-go v1.2.2
5+
github.com/docker/docker v20.10.14+incompatible
6+
github.com/elazarl/goproxy v0.0.0-20220403042543-a53172b9392e
77
github.com/fabpot/local-php-security-checker v1.2.0
88
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79
99
github.com/hashicorp/go-version v1.4.0
@@ -31,8 +31,8 @@ require (
3131

3232
require (
3333
github.com/Microsoft/go-winio v0.5.2 // indirect
34-
github.com/containerd/containerd v1.6.1 // indirect
35-
github.com/distribution/distribution/v3 v3.0.0-20220322084245-a6047a8c9363 // indirect
34+
github.com/containerd/containerd v1.6.2 // indirect
35+
github.com/distribution/distribution/v3 v3.0.0-20220404175050-cd51f38d537d // indirect
3636
github.com/docker/distribution v2.8.1+incompatible // indirect
3737
github.com/docker/go-connections v0.4.0 // indirect
3838
github.com/docker/go-units v0.4.0 // indirect
@@ -52,6 +52,7 @@ require (
5252
github.com/mattn/go-shellwords v1.0.12 // indirect
5353
github.com/mitchellh/mapstructure v1.4.3 // indirect
5454
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect
55+
github.com/morikuni/aec v1.0.0 // indirect
5556
github.com/opencontainers/go-digest v1.0.0 // indirect
5657
github.com/opencontainers/image-spec v1.0.2 // indirect
5758
github.com/pelletier/go-toml v1.9.4 // indirect
@@ -67,20 +68,20 @@ require (
6768
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
6869
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
6970
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
70-
golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064 // indirect
71-
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
72-
golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8 // indirect
71+
golang.org/x/crypto v0.0.0-20220408190544-5352b0902921 // indirect
72+
golang.org/x/net v0.0.0-20220407224826-aac1ed45d8e3 // indirect
73+
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f // indirect
7374
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
7475
golang.org/x/text v0.3.7 // indirect
75-
google.golang.org/genproto v0.0.0-20220322021311-435b647f9ef2 // indirect
76+
google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac // indirect
7677
google.golang.org/grpc v1.45.0 // indirect
7778
google.golang.org/protobuf v1.28.0 // indirect
7879
gopkg.in/fsnotify.v1 v1.4.7 // indirect
7980
gopkg.in/ini.v1 v1.66.4 // indirect
8081
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
8182
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
8283
howett.net/plist v1.0.0 // indirect
83-
software.sslmate.com/src/go-pkcs12 v0.0.0-20210415151418-c5206de65a78 // indirect
84+
software.sslmate.com/src/go-pkcs12 v0.1.0 // indirect
8485
)
8586

86-
go 1.17
87+
go 1.18

0 commit comments

Comments
 (0)