From 1b5e78d9902b2c0465b94180deed99e0d1bc9149 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 5 Jun 2025 21:04:36 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.24.4 --- .woodpecker/.lint.yaml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.woodpecker/.lint.yaml b/.woodpecker/.lint.yaml index 8426443..16eb1bf 100644 --- a/.woodpecker/.lint.yaml +++ b/.woodpecker/.lint.yaml @@ -1,12 +1,12 @@ steps: - name: gofmt - image: golang:1.24.3 + image: golang:1.24.4 commands: - gofmt -l -s . when: - event: [push, manual] - name: vuln-check - image: golang:1.24.3 + image: golang:1.24.4 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/Dockerfile b/Dockerfile index 3213d4f..874f1ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.3-bookworm AS build +FROM golang:1.24.4-bookworm AS build # Create build workspace folder WORKDIR /workspace -- 2.47.2