Skip to content

Commit c3e1f77

Browse files
committed
chore(go): 1.25.6
Signed-off-by: Dorin Geman <dorin.geman@docker.com>
1 parent 71e6fed commit c3e1f77

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
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@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5
2121
with:
22-
go-version: 1.24.3
22+
go-version: 1.25.6
2323
cache: true
2424

2525
- name: Install golangci-lint
@@ -45,7 +45,7 @@ jobs:
4545
- name: Set up Go
4646
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5
4747
with:
48-
go-version: 1.24.3
48+
go-version: 1.25.6
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
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go
1919
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5
2020
with:
21-
go-version: 1.24.3
21+
go-version: 1.25.6
2222
cache: true
2323

2424
- 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@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5
4848
with:
49-
go-version: 1.24.3
49+
go-version: 1.25.6
5050
cache: true
5151

5252
- name: Run tests

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG GO_VERSION=1.24
3+
ARG GO_VERSION=1.25
44
ARG LLAMA_SERVER_VERSION=latest
55
ARG LLAMA_SERVER_VARIANT=cpu
66
ARG LLAMA_BINARY_PATH=/com.docker.llama-server.native.linux.${LLAMA_SERVER_VARIANT}.${TARGETARCH}

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.3
3+
GO_VERSION := 1.25.6
44
LLAMA_SERVER_VERSION := latest
55
LLAMA_SERVER_VARIANT := cpu
66
BASE_IMAGE := ubuntu:24.04

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ https://docs.docker.com/ai/model-runner/get-started/
8585

8686
Before building from source, ensure you have the following installed:
8787

88-
- **Go 1.24+** - Required for building both model-runner and model-cli
88+
- **Go 1.25+** - Required for building both model-runner and model-cli
8989
- **Git** - For cloning repositories
9090
- **Make** - For using the provided Makefiles
9191
- **Docker** (optional) - For building and running containerized versions

cmd/cli/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG GO_VERSION=1.24
4-
ARG ALPINE_VERSION=3.21
3+
ARG GO_VERSION=1.25
4+
ARG ALPINE_VERSION=3.23
55

66
ARG DOCS_FORMATS="md,yaml"
77

cmd/cli/go.mod

Lines changed: 1 addition & 1 deletion
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.3
3+
go 1.25.6
44

55
require (
66
github.com/charmbracelet/glamour v0.10.0

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/docker/model-runner
22

3-
go 1.24.3
3+
go 1.25.6
44

55
require (
66
github.com/containerd/containerd/v2 v2.2.1

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.24.3
1+
go 1.25.6
22

33
use (
44
.

0 commit comments

Comments
 (0)