1
0
mirror of https://github.com/rancher/steve.git synced 2025-04-27 02:51:10 +00:00

chore(deps): update registry.suse.com/bci/golang docker tag to v1.22

This commit is contained in:
renovate-rancher[bot] 2024-02-18 04:39:24 +00:00 committed by Michael Bolot
parent 3c1e7f232d
commit 216e53edbc
2 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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 \