浏览代码

use go 1.12.3 (#2535)

mmetc 1 年之前
父节点
当前提交
a254b436c7

+ 1 - 1
.github/workflows/bats-hub.yml

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

+ 1 - 1
.github/workflows/bats-mysql.yml

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

+ 1 - 1
.github/workflows/bats-postgres.yml

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

+ 1 - 1
.github/workflows/bats-sqlite-coverage.yml

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

+ 1 - 1
.github/workflows/ci-windows-build-msi.yml

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

+ 1 - 1
.github/workflows/go-tests-windows.yml

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

+ 1 - 1
.github/workflows/go-tests.yml

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

+ 1 - 1
.github/workflows/release_publish-package.yml

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

+ 1 - 1
Dockerfile

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

+ 1 - 1
Dockerfile.debian

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

+ 1 - 1
azure-pipelines.yml

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

+ 1 - 1
go.mod

@@ -4,7 +4,7 @@ go 1.21
 
 // Don't use the toolchain directive to avoid uncontrolled downloads during
 // a build, especially in sandboxed environments (freebsd, gentoo...).
-// toolchain go1.21.1
+// toolchain go1.21.3
 
 require (
 	entgo.io/ent v0.12.4

+ 1 - 1
test/ansible/vars/go.yml

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