From c1537f9c82dcfea1c0fcd70b2947a17ad52fd1c5 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 3 Apr 2025 18:07:26 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.24.2 --- .woodpecker/.lint.yaml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.woodpecker/.lint.yaml b/.woodpecker/.lint.yaml index f73ba0f..d1015d6 100644 --- a/.woodpecker/.lint.yaml +++ b/.woodpecker/.lint.yaml @@ -1,12 +1,12 @@ steps: - name: gofmt - image: golang:1.24.1 + image: golang:1.24.2 commands: - gofmt -l -s . when: - event: [push, manual] - name: vuln-check - image: golang:1.24.1 + image: golang:1.24.2 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/Dockerfile b/Dockerfile index b6d314c..182b103 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.1-bookworm AS build +FROM golang:1.24.2-bookworm AS build # Create build workspace folder WORKDIR /workspace