diff --git a/.drone.yml b/.drone.yml index f3c49890..fd25d014 100644 --- a/.drone.yml +++ b/.drone.yml @@ -20,7 +20,7 @@ name: build steps: - name: build - image: registry.suse.com/bci/golang:1.20 + image: registry.suse.com/bci/golang:1.22 commands: - make build-bin when: @@ -50,7 +50,7 @@ name: test steps: - name: test - image: registry.suse.com/bci/golang:1.20 + image: registry.suse.com/bci/golang:1.22 commands: - make test when: diff --git a/Dockerfile b/Dockerfile index c2729050..8636bf25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax = docker/dockerfile:experimental -FROM registry.suse.com/bci/golang:1.20 as build +FROM registry.suse.com/bci/golang:1.22 as build COPY go.mod go.sum main.go /src/ COPY pkg /src/pkg/ #RUN --mount=type=cache,target=/root/.cache/go-build \