Skip to content

Commit 0aa17c0

Browse files
committed
Update dependencies
1 parent ebae440 commit 0aa17c0

File tree

3 files changed

+58
-1011
lines changed

3 files changed

+58
-1011
lines changed

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,10 @@ GOPATH?=$(HOME)/go
44
FIRST_GOPATH:=$(firstword $(subst :, ,$(GOPATH)))
55

66
# Build available information.
7-
GIT_TAG:=$(shell git describe --exact-match --abbrev=0 --tags 2> /dev/null)
87
GIT_HASH:=$(shell git log --format="%h" -n 1 2> /dev/null)
98
GIT_BRANCH:=$(shell git branch 2> /dev/null | grep '*' | cut -f2 -d' ')
10-
GO_VERSION:=$(shell go version)
11-
BUILD_TS:=$(shell date +%FT%T%z)
12-
GOPKG:=github.com/launchrctl/launchr
13-
149
APP_VERSION:="$(GIT_BRANCH)-$(GIT_HASH)"
10+
GOPKG:=github.com/launchrctl/launchr
1511

1612
DEBUG?=0
1713
ifeq ($(DEBUG), 1)
@@ -58,6 +54,7 @@ build:
5854

5955
# Install launchr
6056
.PHONY: install
57+
install: all
6158
install:
6259
$(info Installing launchr to GOPATH...)
6360
cp $(LOCAL_BIN)/launchr $(GOBIN)/launchr

go.mod

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,42 +4,42 @@ go 1.20
44

55
require (
66
github.com/a8m/envsubst v1.4.2
7-
github.com/docker/docker v23.0.1+incompatible
7+
github.com/docker/docker v24.0.2+incompatible
88
github.com/golang/mock v1.6.0
9-
github.com/moby/moby v23.0.1+incompatible
9+
github.com/moby/moby v24.0.2+incompatible
1010
github.com/moby/sys/signal v0.7.0
11-
github.com/moby/term v0.0.0-20221205130635-1aeaba878587
12-
github.com/spf13/cobra v1.6.1
13-
github.com/stretchr/testify v1.8.0
14-
golang.org/x/sys v0.5.0
11+
github.com/moby/term v0.5.0
12+
github.com/spf13/cobra v1.7.0
13+
github.com/stretchr/testify v1.8.2
14+
golang.org/x/sys v0.9.0
1515
gopkg.in/yaml.v3 v3.0.1
1616
)
1717

1818
require (
1919
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
20-
github.com/Microsoft/go-winio v0.6.0 // indirect
21-
github.com/Microsoft/hcsshim v0.9.7 // indirect
22-
github.com/containerd/containerd v1.6.18 // indirect
20+
github.com/Microsoft/go-winio v0.6.1 // indirect
21+
github.com/containerd/containerd v1.7.2 // indirect
2322
github.com/davecgh/go-spew v1.1.1 // indirect
24-
github.com/docker/distribution v2.8.1+incompatible // indirect
23+
github.com/docker/distribution v2.8.2+incompatible // indirect
2524
github.com/docker/go-connections v0.4.0 // indirect
2625
github.com/docker/go-units v0.5.0 // indirect
2726
github.com/gogo/protobuf v1.3.2 // indirect
2827
github.com/inconshreveable/mousetrap v1.1.0 // indirect
29-
github.com/klauspost/compress v1.16.0 // indirect
28+
github.com/klauspost/compress v1.16.6 // indirect
3029
github.com/moby/patternmatcher v0.5.0 // indirect
3130
github.com/moby/sys/sequential v0.5.0 // indirect
31+
github.com/morikuni/aec v1.0.0 // indirect
3232
github.com/opencontainers/go-digest v1.0.0 // indirect
33-
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect
34-
github.com/opencontainers/runc v1.1.4 // indirect
33+
github.com/opencontainers/image-spec v1.1.0-rc3 // indirect
34+
github.com/opencontainers/runc v1.1.7 // indirect
3535
github.com/pkg/errors v0.9.1 // indirect
3636
github.com/pmezard/go-difflib v1.0.0 // indirect
37-
github.com/sirupsen/logrus v1.9.0 // indirect
37+
github.com/sirupsen/logrus v1.9.3 // indirect
3838
github.com/spf13/pflag v1.0.5 // indirect
39-
golang.org/x/mod v0.8.0 // indirect
40-
golang.org/x/net v0.7.0 // indirect
39+
golang.org/x/mod v0.11.0 // indirect
40+
golang.org/x/net v0.11.0 // indirect
4141
golang.org/x/time v0.3.0 // indirect
42-
golang.org/x/tools v0.6.0 // indirect
42+
golang.org/x/tools v0.10.0 // indirect
4343
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
4444
gotest.tools/v3 v3.4.0 // indirect
4545
)

0 commit comments

Comments
 (0)