Skip to content

Commit 754e0ed

Browse files
authored
Merge pull request #533 from docker/dependabot/go_modules/go-modules-root-1a8b41dca1
chore(deps): bump the go-modules-root group across 1 directory with 3 updates
2 parents 19fa5e6 + 2b9bd52 commit 754e0ed

File tree

11 files changed

+329
-102
lines changed

11 files changed

+329
-102
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c
2121
with:
22-
go-version: 1.24.2
22+
go-version: 1.24.3
2323
cache: true
2424

2525
- name: Install golangci-lint
@@ -45,7 +45,7 @@ jobs:
4545
- name: Set up Go
4646
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c
4747
with:
48-
go-version: 1.24.2
48+
go-version: 1.24.3
4949
cache: true
5050

5151
- name: Check go mod tidy

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Go
1717
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c
1818
with:
19-
go-version: 1.24.2
19+
go-version: 1.24.3
2020
cache: true
2121

2222
- name: Set up Docker Buildx

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Set up Go
4747
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c
4848
with:
49-
go-version: 1.24.2
49+
go-version: 1.24.3
5050
cache: true
5151

5252
- name: Run tests

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Project variables
22
APP_NAME := model-runner
3-
GO_VERSION := 1.24.0
3+
GO_VERSION := 1.24.3
44
LLAMA_SERVER_VERSION := latest
55
LLAMA_SERVER_VARIANT := cpu
66
BASE_IMAGE := ubuntu:24.04

cmd/cli/go.mod

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/docker/model-runner/cmd/cli
22

3-
go 1.24.0
3+
go 1.24.3
44

55
require (
66
github.com/charmbracelet/glamour v0.10.0
@@ -51,10 +51,10 @@ require (
5151
github.com/clipperhouse/displaywidth v0.6.0 // indirect
5252
github.com/clipperhouse/stringish v0.1.1 // indirect
5353
github.com/clipperhouse/uax29/v2 v2.3.0 // indirect
54-
github.com/containerd/containerd/v2 v2.1.5 // indirect
54+
github.com/containerd/containerd/v2 v2.2.1 // indirect
5555
github.com/containerd/errdefs/pkg v0.3.0 // indirect
5656
github.com/containerd/log v0.1.0 // indirect
57-
github.com/containerd/platforms v1.0.0-rc.1 // indirect
57+
github.com/containerd/platforms v1.0.0-rc.2 // indirect
5858
github.com/containerd/stargz-snapshotter/estargz v0.16.3 // indirect
5959
github.com/containerd/typeurl/v2 v2.2.3 // indirect
6060
github.com/cpuguy83/dockercfg v0.3.2 // indirect
@@ -79,10 +79,10 @@ require (
7979
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
8080
github.com/henvic/httpretty v0.1.4 // indirect
8181
github.com/inconshreveable/mousetrap v1.1.0 // indirect
82-
github.com/jaypipes/ghw v0.19.1 // indirect
82+
github.com/jaypipes/ghw v0.21.2 // indirect
8383
github.com/jaypipes/pcidb v1.1.1 // indirect
8484
github.com/json-iterator/go v1.1.12 // indirect
85-
github.com/klauspost/compress v1.18.0 // indirect
85+
github.com/klauspost/compress v1.18.1 // indirect
8686
github.com/kolesnikovae/go-winjob v1.0.0 // indirect
8787
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
8888
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
@@ -102,7 +102,7 @@ require (
102102
github.com/moby/sys/user v0.4.0 // indirect
103103
github.com/moby/sys/userns v0.1.0 // indirect
104104
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
105-
github.com/modern-go/reflect2 v1.0.2 // indirect
105+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
106106
github.com/morikuni/aec v1.0.0 // indirect
107107
github.com/muesli/reflow v0.3.0 // indirect
108108
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
@@ -139,16 +139,16 @@ require (
139139
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
140140
go.yaml.in/yaml/v2 v2.4.3 // indirect
141141
go.yaml.in/yaml/v3 v3.0.4 // indirect
142-
golang.org/x/crypto v0.43.0 // indirect
142+
golang.org/x/crypto v0.45.0 // indirect
143143
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
144-
golang.org/x/mod v0.28.0 // indirect
145-
golang.org/x/net v0.46.0 // indirect
146-
golang.org/x/text v0.30.0 // indirect
147-
golang.org/x/tools v0.37.0 // indirect
148-
gonum.org/v1/gonum v0.15.1 // indirect
149-
google.golang.org/genproto/googleapis/api v0.0.0-20250219182151-9fdb1cabc7b2 // indirect
150-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250414145226-207652e42e2e // indirect
151-
google.golang.org/grpc v1.72.2 // indirect
144+
golang.org/x/mod v0.29.0 // indirect
145+
golang.org/x/net v0.47.0 // indirect
146+
golang.org/x/text v0.31.0 // indirect
147+
golang.org/x/tools v0.38.0 // indirect
148+
gonum.org/v1/gonum v0.16.0 // indirect
149+
google.golang.org/genproto/googleapis/api v0.0.0-20250804133106-a7a43d27e69b // indirect
150+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250804133106-a7a43d27e69b // indirect
151+
google.golang.org/grpc v1.76.0 // indirect
152152
google.golang.org/protobuf v1.36.10 // indirect
153153
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
154154
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)