CI: use Go 1.20.3 (#2163)

This commit is contained in:
mmetc 2023-04-12 16:57:52 +02:00 committed by GitHub
parent 0c5d233563
commit 774a8cfc00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 13 additions and 13 deletions

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,5 +1,5 @@
# vim: set ft=dockerfile:
ARG GOVERSION=1.20.1
ARG GOVERSION=1.20.3
FROM golang:${GOVERSION}-bullseye AS build

View file

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

2
go.mod
View file

@ -1,6 +1,6 @@
module github.com/crowdsecurity/crowdsec
go 1.19
go 1.20
require (
entgo.io/ent v0.11.3

View file

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