From e1761111c16357784aa31d8d3e1961a8a834333b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ignacio=20L=C3=B3pez=20Luna?= Date: Tue, 17 Mar 2026 11:24:46 +0100 Subject: [PATCH] fix: downgrade Go version from 1.26.0 to 1.25.8 in configuration files --- .github/workflows/ci.yml | 4 ++-- .github/workflows/integration-test.yml | 2 +- .github/workflows/release.yml | 2 +- Dockerfile | 2 +- Makefile | 2 +- cmd/cli/Dockerfile | 2 +- go.mod | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) 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