From bc2dcda5bff7904afebbeaf8760972e5c0bfd180 Mon Sep 17 00:00:00 2001 From: Loyalsoldier <10487845+Loyalsoldier@users.noreply.github.com> Date: Wed, 1 Sep 2021 10:09:23 +0800 Subject: [PATCH] Chore: workflow uses Golang v1.17 (#609) --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 743cc426..27e8b0d7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,10 +11,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Setup Go 1.x.y + - name: Setup Go uses: actions/setup-go@v2 with: - go-version: ^1.16 + go-version: 1.17 - name: Set variables run: | @@ -23,7 +23,7 @@ jobs: shell: bash - name: Checkout codebase - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: path: code