From 9f017e7e0370c5b8df818382a0efbabf7b20a7e2 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 5 Mar 2024 20:19:34 +0000 Subject: [PATCH] Update golang Docker tag to v1.22.1 --- .drone.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index efb9561..f5b569a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,14 +3,14 @@ name: build steps: - name: gofmt - image: golang:1.22.0 + image: golang:1.22.1 commands: - gofmt -l -s . when: event: - push - name: vuln-check - image: golang:1.22.0 + image: golang:1.22.1 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/Dockerfile b/Dockerfile index 60a3cdf..b2e862e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.0-bookworm AS build +FROM golang:1.22.1-bookworm AS build # Create build workspace folder WORKDIR /workspace