From aa9bf6b6a5bdce5a801c327194f6cc459d756b0d Mon Sep 17 00:00:00 2001 From: Damian Debkowski Date: Fri, 22 Jul 2022 12:16:53 -0700 Subject: [PATCH] chore(go) bump version to 1.18.4 (#2281) --- .github/workflows/build.yml | 10 +++++----- ci/goinstall.sh | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bc669c1ea4..f9cd4254ed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: - name: Setup go uses: actions/setup-go@v3 with: - go-version: "1.18.3" + go-version: "1.18.4" - name: get product version id: get-product-version run: | @@ -83,7 +83,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v3 with: - go-version: "1.18.3" + go-version: "1.18.4" - name: Get product edition id: get-product-edition run: | @@ -101,7 +101,7 @@ jobs: matrix: goos: [ freebsd, windows, netbsd, openbsd, solaris ] goarch: [ "386", "amd64", "arm" ] - go: [ "1.18.3" ] + go: [ "1.18.4" ] exclude: - goos: solaris goarch: 386 @@ -162,7 +162,7 @@ jobs: matrix: goos: [linux] goarch: ["arm", "arm64", "386", "amd64"] - go: [ "1.18.3" ] + go: [ "1.18.4" ] fail-fast: true name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build @@ -248,7 +248,7 @@ jobs: matrix: goos: [ darwin ] goarch: [ "amd64", "arm64" ] - go: [ "1.18.3" ] + go: [ "1.18.4" ] fail-fast: true name: Go ${{ matrix.go }} ${{ matrix.goos }} ${{ matrix.goarch }} build diff --git a/ci/goinstall.sh b/ci/goinstall.sh index 9a9b56e790..dc3c5f839a 100755 --- a/ci/goinstall.sh +++ b/ci/goinstall.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -VERSION="1.18.3" +VERSION="1.18.4" [ -z "$GOROOT" ] && GOROOT="$HOME/.go" [ -z "$GOPATH" ] && GOPATH="$HOME/go"