From a98f9ef77db1a4b94255d0429fc90497831e5f7b Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Sat, 11 Jul 2020 02:45:45 +1000 Subject: [PATCH] Use newer Go for Linux --- .github/workflows/cli.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml index e6dd6ef..d8de438 100644 --- a/.github/workflows/cli.yml +++ b/.github/workflows/cli.yml @@ -50,7 +50,10 @@ jobs: run: brew install go - name: Set up Go (Linux) if: runner.os == 'Linux' - run: sudo apt install golang-go + run: | + sudo add-apt-repository -y ppa:longsleep/golang-backports + sudo apt update + sudo apt install golang-go - name: Build CLI working-directory: ./cli run: cargo build --release -vvv