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