From c776ee1e264928b5fcd2a76dd74ea3cb8c619e1d Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 17 Jan 2025 01:02:15 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.23.5 --- .woodpecker/.lint.yaml | 4 ++-- .woodpecker/.test.yaml | 2 +- Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker/.lint.yaml b/.woodpecker/.lint.yaml index 9b87a25..6fe955e 100644 --- a/.woodpecker/.lint.yaml +++ b/.woodpecker/.lint.yaml @@ -1,12 +1,12 @@ steps: - name: gofmt - image: golang:1.23.4 + image: golang:1.23.5 commands: - gofmt -l -s . when: - event: push - name: vuln-check - image: golang:1.23.4 + image: golang:1.23.5 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/.woodpecker/.test.yaml b/.woodpecker/.test.yaml index f385837..4372a20 100644 --- a/.woodpecker/.test.yaml +++ b/.woodpecker/.test.yaml @@ -1,6 +1,6 @@ steps: - name: gotest - image: golang:1.23.4 + image: golang:1.23.5 commands: - go test ./... when: diff --git a/Dockerfile b/Dockerfile index 39102a0..42455d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.4-bookworm AS build +FROM golang:1.23.5-bookworm AS build # Create build workspace folder WORKDIR /workspace