From 7a772b303e77cd62c6eb2cd40ea53cfec2097182 Mon Sep 17 00:00:00 2001 From: Stavros Date: Thu, 12 Mar 2026 19:00:38 +0200 Subject: [PATCH] chore: bump go version everywhere --- .github/workflows/ci.yml | 2 +- .github/workflows/nightly.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- Dockerfile | 2 +- Dockerfile.dev | 2 +- Dockerfile.distroless | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e70165..02893ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - name: Setup go uses: actions/setup-go@v5 with: - go-version: "^1.24.0" + go-version: "^1.26.0" - name: Initialize submodules run: | diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 6b0cd20..1b52a38 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -61,7 +61,7 @@ jobs: - name: Install go uses: actions/setup-go@v5 with: - go-version: "^1.24.0" + go-version: "^1.26.0" - name: Initialize submodules run: | @@ -116,7 +116,7 @@ jobs: - name: Install go uses: actions/setup-go@v5 with: - go-version: "^1.24.0" + go-version: "^1.26.0" - name: Initialize submodules run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 781fde1..2274a68 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: - name: Install go uses: actions/setup-go@v5 with: - go-version: "^1.24.0" + go-version: "^1.26.0" - name: Initialize submodules run: | @@ -91,7 +91,7 @@ jobs: - name: Install go uses: actions/setup-go@v5 with: - go-version: "^1.24.0" + go-version: "^1.26.0" - name: Initialize submodules run: | diff --git a/Dockerfile b/Dockerfile index edd1412..afd73be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ COPY ./frontend/vite.config.ts ./ RUN bun run build # Builder -FROM golang:1.25-alpine3.21 AS builder +FROM golang:1.26-alpine3.21 AS builder ARG VERSION ARG COMMIT_HASH diff --git a/Dockerfile.dev b/Dockerfile.dev index ea250d3..5ea5c5e 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM golang:1.25-alpine3.21 +FROM golang:1.26-alpine3.21 WORKDIR /tinyauth diff --git a/Dockerfile.distroless b/Dockerfile.distroless index f557090..45782d6 100644 --- a/Dockerfile.distroless +++ b/Dockerfile.distroless @@ -20,7 +20,7 @@ COPY ./frontend/vite.config.ts ./ RUN bun run build # Builder -FROM golang:1.25-alpine3.21 AS builder +FROM golang:1.26-alpine3.21 AS builder ARG VERSION ARG COMMIT_HASH