From 0ccfa71d38065094f08e81df050b7183fa6b8c1c Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 4 Feb 2025 22:04:41 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.23.6 --- .woodpecker/.lint.yaml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.woodpecker/.lint.yaml b/.woodpecker/.lint.yaml index 166959e..bb51f46 100644 --- a/.woodpecker/.lint.yaml +++ b/.woodpecker/.lint.yaml @@ -1,12 +1,12 @@ steps: - name: gofmt - image: golang:1.23.5 + image: golang:1.23.6 commands: - gofmt -l -s . when: - event: [push, manual] - name: vuln-check - image: golang:1.23.5 + image: golang:1.23.6 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/Dockerfile b/Dockerfile index 03f4630..6771ac0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.5-bookworm AS build +FROM golang:1.23.6-bookworm AS build # Create build workspace folder WORKDIR /workspace