Use go 1.21.4 (#2595)

This commit is contained in:
mmetc 2023-11-16 11:09:13 +01:00 committed by GitHub
parent ddd6ee8e42
commit 47eb2e240d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 12 additions and 12 deletions

View file

@ -15,7 +15,7 @@ jobs:
build:
strategy:
matrix:
go-version: ["1.21.3"]
go-version: ["1.21.4"]
name: "Build + tests"
runs-on: ubuntu-latest

View file

@ -14,7 +14,7 @@ jobs:
build:
strategy:
matrix:
go-version: ["1.21.3"]
go-version: ["1.21.4"]
name: "Build + tests"
runs-on: ubuntu-latest

View file

@ -10,7 +10,7 @@ jobs:
build:
strategy:
matrix:
go-version: ["1.21.3"]
go-version: ["1.21.4"]
name: "Build + tests"
runs-on: ubuntu-latest

View file

@ -11,7 +11,7 @@ jobs:
build:
strategy:
matrix:
go-version: ["1.21.3"]
go-version: ["1.21.4"]
name: "Build + tests"
runs-on: ubuntu-latest

View file

@ -23,7 +23,7 @@ jobs:
build:
strategy:
matrix:
go-version: ["1.21.3"]
go-version: ["1.21.4"]
name: Build
runs-on: windows-2019

View file

@ -22,7 +22,7 @@ jobs:
build:
strategy:
matrix:
go-version: ["1.21.3"]
go-version: ["1.21.4"]
name: "Build + tests"
runs-on: windows-2022

View file

@ -34,7 +34,7 @@ jobs:
build:
strategy:
matrix:
go-version: ["1.21.3"]
go-version: ["1.21.4"]
name: "Build + tests"
runs-on: ubuntu-latest

View file

@ -14,7 +14,7 @@ jobs:
build:
strategy:
matrix:
go-version: ["1.21.3"]
go-version: ["1.21.4"]
name: Build and upload binary package
runs-on: ubuntu-latest

View file

@ -1,5 +1,5 @@
# vim: set ft=dockerfile:
ARG GOVERSION=1.21.3
ARG GOVERSION=1.21.4
FROM golang:${GOVERSION}-alpine AS build

View file

@ -1,5 +1,5 @@
# vim: set ft=dockerfile:
ARG GOVERSION=1.21.3
ARG GOVERSION=1.21.4
FROM golang:${GOVERSION}-bookworm AS build

View file

@ -27,7 +27,7 @@ stages:
- task: GoTool@0
displayName: "Install Go 1.20"
inputs:
version: '1.21.3'
version: '1.21.4'
- pwsh: |
choco install -y make

View file

@ -1,5 +1,5 @@
# vim: set ft=yaml.ansible:
---
golang_version: "1.21.3"
golang_version: "1.21.4"
golang_install_dir: "/opt/go/{{ golang_version }}"