From 3898d534f3cd08e9f992e0d5d352f1beaf09d3f9 Mon Sep 17 00:00:00 2001 From: Anagh Kumar Baranwal <6824881+darthShadow@users.noreply.github.com> Date: Fri, 3 Feb 2023 15:46:27 +0530 Subject: [PATCH] build: update to go1.20 Signed-off-by: Anagh Kumar Baranwal <6824881+darthShadow@users.noreply.github.com> --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ea0bf7ec5..19113318b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ jobs: include: - job_name: linux os: ubuntu-latest - go: '1.20.0-rc.3' + go: '1.20' gotags: cmount build_flags: '-include "^linux/"' check: true @@ -43,14 +43,14 @@ jobs: - job_name: linux_386 os: ubuntu-latest - go: '1.20.0-rc.3' + go: '1.20' goarch: 386 gotags: cmount quicktest: true - job_name: mac_amd64 os: macos-11 - go: '1.20.0-rc.3' + go: '1.20' gotags: 'cmount' build_flags: '-include "^darwin/amd64" -cgo' quicktest: true @@ -59,14 +59,14 @@ jobs: - job_name: mac_arm64 os: macos-11 - go: '1.20.0-rc.3' + go: '1.20' gotags: 'cmount' build_flags: '-include "^darwin/arm64" -cgo -macos-arch arm64 -cgo-cflags=-I/usr/local/include -cgo-ldflags=-L/usr/local/lib' deploy: true - job_name: windows os: windows-latest - go: '1.20.0-rc.3' + go: '1.20' gotags: cmount cgo: '0' build_flags: '-include "^windows/"' @@ -76,7 +76,7 @@ jobs: - job_name: other_os os: ubuntu-latest - go: '1.20.0-rc.3' + go: '1.20' build_flags: '-exclude "^(windows/|darwin/|linux/)"' compile_all: true deploy: true @@ -239,7 +239,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: 1.20.0-rc.3 + go-version: '1.20' check-latest: true - name: Install govulncheck @@ -264,7 +264,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.20.0-rc.3 + go-version: '1.20' - name: Go module cache uses: actions/cache@v3