From 886c9dffa865ef70dc677ec49c728aea14f9de74 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 3 Jul 2024 00:10:03 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.22.5 --- .drone.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index bce580a..b332bac 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,7 +3,7 @@ name: build steps: - name: gofmt - image: golang:1.22.4 + image: golang:1.22.5 commands: - gofmt -l -s . when: @@ -17,7 +17,7 @@ steps: event: - push - name: vuln-check - image: golang:1.22.4 + image: golang:1.22.5 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/Dockerfile b/Dockerfile index 62b802a..a157fdf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.4-bookworm AS build +FROM golang:1.22.5-bookworm AS build # Create build workspace folder WORKDIR /workspace