From c3b4ac0425dfb0ee5abd5e8c80e6b10e5fd07391 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Sep 2026 01:32:50 +0000 Subject: [PATCH 1/2] Bump golang in the docker group across 1 directory Bumps the docker group with 1 update in the / directory: 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 ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cf03930..6906474 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN npm run build # # Build backend # -FROM golang:1.26-alpine AS backend-builder +FROM golang:1.27-alpine AS backend-builder ARG TARGETARCH ARG TARGETOS From e8bb9dfbb1488dac98f819cc735981ba51156360 Mon Sep 17 00:00:00 2001 From: Rein Krul Date: Fri, 11 Sep 2026 06:44:03 +0200 Subject: [PATCH 2/2] Update GH Actions Go version to 1.27 Keep CI in sync with the Dockerfile's golang builder image bump. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_01NewBuf39LpYKFD6xzLDgy8 --- .github/workflows/go-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go-test.yaml b/.github/workflows/go-test.yaml index 16820bf..f34a9ae 100644 --- a/.github/workflows/go-test.yaml +++ b/.github/workflows/go-test.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [ '1.23' ] + go-version: [ '1.27' ] steps: - uses: actions/checkout@v7