From ebe9060d8baac74b37d85e26d4e112006316953e Mon Sep 17 00:00:00 2001 From: Daniel Sanchez Quiros Date: Mon, 24 Oct 2022 18:01:06 +0200 Subject: [PATCH] Use latest Go in check workflow --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cb3f848..7626241 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,6 +27,9 @@ jobs: submodules: true - name: Checkout submodules run: git submodule update --init --recursive + - uses: actions/setup-go@v3 # we need go to build go-waku + with: + go-version: '1.19' - uses: actions-rs/toolchain@v1 with: profile: minimal