Skip to content

Commit

Permalink
update go version to 1.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jmurret committed May 8, 2023
1 parent 83ad0df commit 4384bd9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ jobs:
strategy:
matrix:
include:
- {go: "1.20.1", goos: "linux", goarch: "386"}
- {go: "1.20.1", goos: "linux", goarch: "amd64"}
- {go: "1.20.1", goos: "linux", goarch: "arm"}
- {go: "1.20.1", goos: "linux", goarch: "arm64"}
- {go: "1.20.1", goos: "freebsd", goarch: "386"}
- {go: "1.20.1", goos: "freebsd", goarch: "amd64"}
- {go: "1.20.1", goos: "windows", goarch: "386"}
- {go: "1.20.1", goos: "windows", goarch: "amd64"}
- {go: "1.20.1", goos: "solaris", goarch: "amd64"}
- {go: "1.20.3", goos: "linux", goarch: "386"}
- {go: "1.20.3", goos: "linux", goarch: "amd64"}
- {go: "1.20.3", goos: "linux", goarch: "arm"}
- {go: "1.20.3", goos: "linux", goarch: "arm64"}
- {go: "1.20.3", goos: "freebsd", goarch: "386"}
- {go: "1.20.3", goos: "freebsd", goarch: "amd64"}
- {go: "1.20.3", goos: "windows", goarch: "386"}
- {go: "1.20.3", goos: "windows", goarch: "amd64"}
- {go: "1.20.3", goos: "solaris", goarch: "amd64"}
fail-fast: true

name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
matrix:
goos: [ darwin ]
goarch: [ "amd64", "arm64" ]
go: [ "1.20.1" ]
go: [ "1.20.3" ]
fail-fast: true

name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build
Expand Down
2 changes: 1 addition & 1 deletion build-support/docker/Build-Go.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

ARG GOLANG_VERSION=1.20.1
ARG GOLANG_VERSION=1.20.3
FROM golang:${GOLANG_VERSION}

WORKDIR /consul

0 comments on commit 4384bd9

Please sign in to comment.