chore(deps): update golang docker tag to v1.21

This commit is contained in:
Comrade Renovate Bot 2023-08-09 07:02:07 +00:00
parent 2d826e47d0
commit e42139fd83
2 changed files with 4 additions and 4 deletions

View File

@ -3,19 +3,19 @@ kind: pipeline
name: coopcloud.tech/abra name: coopcloud.tech/abra
steps: steps:
- name: make check - name: make check
image: golang:1.20 image: golang:1.21
commands: commands:
- make check - make check
- name: make build - name: make build
image: golang:1.20 image: golang:1.21
commands: commands:
- make build - make build
depends_on: depends_on:
- make check - make check
- name: make test - name: make test
image: golang:1.20 image: golang:1.21
commands: commands:
- make test - make test
depends_on: depends_on:

View File

@ -1,4 +1,4 @@
FROM golang:1.20-alpine AS build FROM golang:1.21-alpine AS build
ENV GOPRIVATE coopcloud.tech ENV GOPRIVATE coopcloud.tech