From fd0145b0e6f66df13ba5231af4cac0258f2fff3b Mon Sep 17 00:00:00 2001 From: Adam Hughes Date: Tue, 12 Oct 2021 21:20:27 +0000 Subject: [PATCH] build: bump Go to 1.17.2 --- .github/workflows/ci.yml | 14 +++++++------- INSTALL.md | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdfd84970b..5408ccb934 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: check_go_mod: name: check_go_mod runs-on: ubuntu-20.04 - container: golang:1.17.1 + container: golang:1.17.2 steps: - uses: actions/checkout@v2 @@ -46,7 +46,7 @@ jobs: debian: name: debian runs-on: ubuntu-20.04 - container: golang:1.17.1-buster + container: golang:1.17.2-buster steps: - name: Fetch deps run: | @@ -62,7 +62,7 @@ jobs: alpine: name: alpine runs-on: ubuntu-20.04 - container: golang:1.17.1-alpine + container: golang:1.17.2-alpine steps: - name: Fetch deps run: apk add -q --no-cache git alpine-sdk automake libtool linux-headers libarchive-dev util-linux-dev libuuid openssl-dev gawk sed cryptsetup @@ -123,7 +123,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.17.1 + go-version: 1.17.2 - name: Fetch deps run: sudo apt-get install -y build-essential squashfs-tools libseccomp-dev cryptsetup @@ -145,7 +145,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.17.1 + go-version: 1.17.2 - name: Fetch deps run: sudo apt-get install -y build-essential squashfs-tools libseccomp-dev cryptsetup @@ -189,7 +189,7 @@ jobs: if: env.run_tests uses: actions/setup-go@v2 with: - go-version: 1.17.1 + go-version: 1.17.2 - name: Fetch deps if: env.run_tests @@ -224,7 +224,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.17.1 + go-version: 1.17.2 - name: Check pkg/... doesn't depend on buildcfg run: | diff --git a/INSTALL.md b/INSTALL.md index 113cb8e75f..4c660a4382 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -55,7 +55,7 @@ _**NOTE:** if you are updating Go from a older version, make sure you remove `/usr/local/go` before reinstalling it._ ```sh -export VERSION=1.17.1 OS=linux ARCH=amd64 # change this as you need +export VERSION=1.17.2 OS=linux ARCH=amd64 # change this as you need wget -O /tmp/go${GOVERSION}.${OS}-${ARCH}.tar.gz \ https://dl.google.com/go/go${GOVERSION}.${OS}-${ARCH}.tar.gz