From db11b1da1f8496ada2e9cf5f3213b01e4067dfb1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 06:27:22 +0000 Subject: [PATCH] build(deps): Bump golang in /docker in the docker-images group Bumps the docker-images group in /docker with 1 update: golang. Updates `golang` from 1.26-alpine to 1.27-alpine --- updated-dependencies: - dependency-name: golang dependency-version: 1.27-alpine dependency-type: direct:production dependency-group: docker-images ... Signed-off-by: dependabot[bot] --- docker/api.Dockerfile | 2 +- docker/indexer-scip.Dockerfile | 6 +++--- docker/indexer.Dockerfile | 4 ++-- docker/zoekt-refresh.Dockerfile | 2 +- docker/zoekt.Dockerfile | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docker/api.Dockerfile b/docker/api.Dockerfile index 8f50244..53ad45a 100644 --- a/docker/api.Dockerfile +++ b/docker/api.Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM golang:1.26-alpine AS builder +FROM golang:1.27-alpine AS builder WORKDIR /app diff --git a/docker/indexer-scip.Dockerfile b/docker/indexer-scip.Dockerfile index 219cce4..d41ad3d 100644 --- a/docker/indexer-scip.Dockerfile +++ b/docker/indexer-scip.Dockerfile @@ -1,5 +1,5 @@ # Build zoekt-git-index -FROM golang:1.26-alpine AS zoekt-builder +FROM golang:1.27-alpine AS zoekt-builder WORKDIR /zoekt @@ -9,7 +9,7 @@ RUN git clone --depth 1 https://github.com/sourcegraph/zoekt.git . RUN go build -o /bin/zoekt-git-index ./cmd/zoekt-git-index # Build indexer -FROM golang:1.26-alpine AS builder +FROM golang:1.27-alpine AS builder WORKDIR /app @@ -39,7 +39,7 @@ RUN chmod +x /tmp/install-ctags-alpine.sh RUN /tmp/install-ctags-alpine.sh # Build scip-go binary -FROM golang:1.26-alpine AS scip-go-builder +FROM golang:1.27-alpine AS scip-go-builder RUN apk add --no-cache git RUN go install github.com/scip-code/scip-go/cmd/scip-go@latest diff --git a/docker/indexer.Dockerfile b/docker/indexer.Dockerfile index a06d9a8..5fe5a08 100644 --- a/docker/indexer.Dockerfile +++ b/docker/indexer.Dockerfile @@ -1,5 +1,5 @@ # Build zoekt-git-index -FROM golang:1.26-alpine AS zoekt-builder +FROM golang:1.27-alpine AS zoekt-builder WORKDIR /zoekt @@ -9,7 +9,7 @@ RUN git clone --depth 1 https://github.com/sourcegraph/zoekt.git . RUN go build -o /bin/zoekt-git-index ./cmd/zoekt-git-index # Build indexer -FROM golang:1.26-alpine AS builder +FROM golang:1.27-alpine AS builder WORKDIR /app diff --git a/docker/zoekt-refresh.Dockerfile b/docker/zoekt-refresh.Dockerfile index fb810bf..fac4128 100644 --- a/docker/zoekt-refresh.Dockerfile +++ b/docker/zoekt-refresh.Dockerfile @@ -1,6 +1,6 @@ # Lightweight sidecar for triggering zoekt index reloads on network filesystems # (CephFS, NFS, EFS) that don't propagate inotify events reliably. -FROM golang:1.26-alpine AS builder +FROM golang:1.27-alpine AS builder WORKDIR /app diff --git a/docker/zoekt.Dockerfile b/docker/zoekt.Dockerfile index a21fc11..d76fde9 100644 --- a/docker/zoekt.Dockerfile +++ b/docker/zoekt.Dockerfile @@ -1,5 +1,5 @@ # Build zoekt from source -FROM golang:1.26-alpine AS builder +FROM golang:1.27-alpine AS builder WORKDIR /zoekt