diff options
author | 2021-08-10 04:37:58 -0400 | |
---|---|---|
committer | 2021-08-10 16:37:58 +0800 | |
commit | 486dd900b446c2a21142bb74a11cab94873b824a (patch) | |
tree | 236c1f767a583d9cef993f2a628b02b286a2677d | |
parent | 5e7292b6cc123bdb04fbb608f2e7b8f042555329 (diff) | |
download | coredns-486dd900b446c2a21142bb74a11cab94873b824a.tar.gz coredns-486dd900b446c2a21142bb74a11cab94873b824a.tar.zst coredns-486dd900b446c2a21142bb74a11cab94873b824a.zip |
use latest go 1.x available (#4794)
Signed-off-by: Chris O'Haver <cohaver@infoblox.com>
-rw-r--r-- | .github/workflows/go.tidy.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/go.tidy.yml b/.github/workflows/go.tidy.yml index 9fcd81101..1ebdecd5d 100644 --- a/.github/workflows/go.tidy.yml +++ b/.github/workflows/go.tidy.yml @@ -9,6 +9,12 @@ jobs: runs-on: ubuntu-latest steps: - + name: Install Go + uses: actions/setup-go@v2 + with: + go-version: '^1.16' + id: go + - name: Checkout uses: actions/checkout@v2 - |