From 08799e9d0a335046f315977aefc4e468b60fddc0 Mon Sep 17 00:00:00 2001 From: Ainar Garipov Date: Tue, 13 Sep 2022 14:00:46 +0300 Subject: [PATCH] all: use precise go version in github workflows --- .github/workflows/build.yml | 6 +++--- .github/workflows/lint.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c01f5b2c..dbe2bad3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ 'name': 'build' 'env': - 'GO_VERSION': '1.18' + 'GO_VERSION': '1.18.6' 'NODE_VERSION': '14' 'on': @@ -31,7 +31,7 @@ 'with': 'fetch-depth': 0 - 'name': 'Set up Go' - 'uses': 'actions/setup-go@v2' + 'uses': 'actions/setup-go@v3' 'with': 'go-version': '${{ env.GO_VERSION }}' - 'name': 'Set up Node' @@ -72,7 +72,7 @@ 'with': 'fetch-depth': 0 - 'name': 'Set up Go' - 'uses': 'actions/setup-go@v2' + 'uses': 'actions/setup-go@v3' 'with': 'go-version': '${{ env.GO_VERSION }}' - 'name': 'Set up Node' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a60121fe..64719a3e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,7 +1,7 @@ 'name': 'lint' 'env': - 'GO_VERSION': '1.18' + 'GO_VERSION': '1.18.6' 'on': 'push': @@ -17,7 +17,7 @@ 'steps': - 'uses': 'actions/checkout@v2' - 'name': 'Set up Go' - 'uses': 'actions/setup-go@v2' + 'uses': 'actions/setup-go@v3' 'with': 'go-version': '${{ env.GO_VERSION }}' - 'name': 'run-lint'