From eb1f4e0738e9e3d160a19e5f6b7e60667c7ca902 Mon Sep 17 00:00:00 2001 From: scriptos Date: Wed, 8 Apr 2026 20:09:40 +0200 Subject: [PATCH] fix: bump Go from 1.26.1 to 1.26.2 to resolve stdlib vulnerabilities --- .gitea/workflows/pr-test.yml | 2 +- .gitea/workflows/security-scan.yml | 2 +- Dockerfile | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/pr-test.yml b/.gitea/workflows/pr-test.yml index 037dc13..e0a2fe0 100644 --- a/.gitea/workflows/pr-test.yml +++ b/.gitea/workflows/pr-test.yml @@ -11,7 +11,7 @@ jobs: name: Lint, Build & Test runs-on: ubuntu-latest container: - image: golang:1.26-alpine + image: golang:1.26.2-alpine steps: - name: Install build dependencies diff --git a/.gitea/workflows/security-scan.yml b/.gitea/workflows/security-scan.yml index 1915644..72849b8 100644 --- a/.gitea/workflows/security-scan.yml +++ b/.gitea/workflows/security-scan.yml @@ -11,7 +11,7 @@ jobs: name: Go Vulnerability Check runs-on: ubuntu-latest container: - image: golang:1.26-alpine + image: golang:1.26.2-alpine steps: - name: Install dependencies diff --git a/Dockerfile b/Dockerfile index 647e3c0..a51d059 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Multi-stage build for minimal image size # Stage 1: Build -FROM golang:1.26-alpine AS builder +FROM golang:1.26.2-alpine AS builder RUN apk add --no-cache gcc musl-dev sqlite-dev diff --git a/go.mod b/go.mod index bb8c8b6..3173bb4 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module git.techniverse.net/scriptos/keywarden -go 1.26.1 +go 1.26.2 require ( github.com/cloudflare/circl v1.6.3