Skip to content

Commit f79b3e7

Browse files
authored
Merge pull request #2 from stackb/pcj/update-deps
Update go version, deps, actions
2 parents 761f572 + 915c4be commit f79b3e7

File tree

4 files changed

+130
-1341
lines changed

4 files changed

+130
-1341
lines changed

.github/workflows/pr.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212

1313
steps:
1414
- name: Check out code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616

17-
- name: Set up Go 1.16
18-
uses: actions/setup-go@v2
17+
- name: Set up Go
18+
uses: actions/setup-go@v5
1919
with:
20-
go-version: 1.16
20+
go-version: '1.25'
2121
id: go
2222

2323
- name: Vet

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212

1313
steps:
1414
- name: Check out code into the Go module directory
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0 # See: https://goreleaser.com/ci/actions/
1818

19-
- name: Set up Go 1.16
20-
uses: actions/setup-go@v2
19+
- name: Set up Go
20+
uses: actions/setup-go@v5
2121
with:
22-
go-version: 1.16
22+
go-version: '1.25'
2323
id: go
2424

2525
- name: Run GoReleaser

go.mod

Lines changed: 39 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,44 @@
11
module github.com/stackb/layer
22

3-
go 1.16
3+
go 1.25.7
44

55
require (
6-
github.com/dustin/go-humanize v1.0.0
7-
github.com/google/go-containerregistry v0.8.0
8-
github.com/urfave/cli/v2 v2.6.0
6+
github.com/dustin/go-humanize v1.0.1
7+
github.com/google/go-containerregistry v0.21.3
8+
github.com/urfave/cli/v2 v2.27.7
9+
)
10+
11+
require (
12+
github.com/Microsoft/go-winio v0.6.2 // indirect
13+
github.com/containerd/errdefs v1.0.0 // indirect
14+
github.com/containerd/errdefs/pkg v0.3.0 // indirect
15+
github.com/containerd/stargz-snapshotter/estargz v0.18.2 // indirect
16+
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
17+
github.com/distribution/reference v0.6.0 // indirect
18+
github.com/docker/cli v29.3.0+incompatible // indirect
19+
github.com/docker/distribution v2.8.3+incompatible // indirect
20+
github.com/docker/docker-credential-helpers v0.9.3 // indirect
21+
github.com/docker/go-connections v0.6.0 // indirect
22+
github.com/docker/go-units v0.5.0 // indirect
23+
github.com/felixge/httpsnoop v1.0.4 // indirect
24+
github.com/go-logr/logr v1.4.3 // indirect
25+
github.com/go-logr/stdr v1.2.2 // indirect
26+
github.com/klauspost/compress v1.18.4 // indirect
27+
github.com/mitchellh/go-homedir v1.1.0 // indirect
28+
github.com/moby/docker-image-spec v1.3.1 // indirect
29+
github.com/moby/moby/api v1.54.0 // indirect
30+
github.com/moby/moby/client v0.3.0 // indirect
31+
github.com/opencontainers/go-digest v1.0.0 // indirect
32+
github.com/opencontainers/image-spec v1.1.1 // indirect
33+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
34+
github.com/sirupsen/logrus v1.9.4 // indirect
35+
github.com/vbatts/tar-split v0.12.2 // indirect
36+
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
37+
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
38+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
39+
go.opentelemetry.io/otel v1.36.0 // indirect
40+
go.opentelemetry.io/otel/metric v1.36.0 // indirect
41+
go.opentelemetry.io/otel/trace v1.36.0 // indirect
42+
golang.org/x/sync v0.20.0 // indirect
43+
golang.org/x/sys v0.42.0 // indirect
944
)

0 commit comments

Comments
 (0)