From 706e3d0ca8998fa572c5e3ae7d9792722af90800 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 13 Aug 2024 21:18:33 +0000 Subject: [PATCH] Update golang Docker tag to v1.23.0 --- .drone.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 0d56527..6721ed9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,14 +3,14 @@ name: build steps: - name: gofmt - image: golang:1.22.6 + image: golang:1.23.0 commands: - gofmt -l -s . when: event: - push - name: vuln-check - image: golang:1.22.6 + image: golang:1.23.0 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/Dockerfile b/Dockerfile index cc97a15..a8b1ba3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.6-bookworm AS build +FROM golang:1.23.0-bookworm AS build # Create build workspace folder WORKDIR /workspace