diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 06c53d7d1..cae4024da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 with: - go-version: 1.26.0 + go-version: 1.25.8 cache: true - name: Install golangci-lint @@ -45,7 +45,7 @@ jobs: - name: Set up Go uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 with: - go-version: 1.26.0 + go-version: 1.25.8 cache: true - name: Check go mod tidy diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index bf2348ba2..3a48614af 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 with: - go-version: 1.26.0 + go-version: 1.25.8 cache: true - name: Set up Docker Buildx diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 351d24565..8113b9c17 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -213,7 +213,7 @@ jobs: - name: Set up Go uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 with: - go-version: 1.26.0 + go-version: 1.25.8 cache: true - name: Run tests diff --git a/Dockerfile b/Dockerfile index 59d6f660b..2271a924d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -ARG GO_VERSION=1.26 +ARG GO_VERSION=1.25 ARG LLAMA_SERVER_VERSION=latest ARG LLAMA_SERVER_VARIANT=cpu ARG LLAMA_BINARY_PATH=/com.docker.llama-server.native.linux.${LLAMA_SERVER_VARIANT}.${TARGETARCH} diff --git a/Makefile b/Makefile index d9229be76..3e41d6e25 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Project variables APP_NAME := model-runner -GO_VERSION := 1.26.0 +GO_VERSION := 1.25.8 LLAMA_SERVER_VERSION := latest LLAMA_SERVER_VARIANT := cpu BASE_IMAGE := ubuntu:24.04 diff --git a/cmd/cli/Dockerfile b/cmd/cli/Dockerfile index be4eca65d..84a1be617 100644 --- a/cmd/cli/Dockerfile +++ b/cmd/cli/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -ARG GO_VERSION=1.26 +ARG GO_VERSION=1.25 ARG ALPINE_VERSION=3.23 ARG DOCS_FORMATS="md,yaml" diff --git a/go.mod b/go.mod index 60eef7549..d3d84e393 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/docker/model-runner -go 1.26.0 +go 1.25.8 require ( github.com/charmbracelet/glamour v1.0.0