diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index ee86e72a8902..6cdd0bd4a8b9 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -6,6 +6,9 @@ jobs: linter-check: runs-on: ubuntu-latest steps: + - uses: actions/setup-go@v2 + with: + go-version: '1.16.x' - uses: actions/checkout@v2 - name: Run linter run: go run build/ci.go lint \ No newline at end of file diff --git a/.github/workflows/on-pr.yml b/.github/workflows/on-pr.yml index 7f9ea6fae25b..75b4da6c821a 100644 --- a/.github/workflows/on-pr.yml +++ b/.github/workflows/on-pr.yml @@ -15,7 +15,7 @@ jobs: name: Run geth unit test strategy: matrix: - go-version: [ 1.15.x] + go-version: [ 1.16.x] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} env: @@ -43,7 +43,7 @@ jobs: GOPATH: /tmp/go strategy: matrix: - go-version: [ 1.15.x] + go-version: [ 1.16.x] platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} steps: