From 243dbddc692308c5feb8e53a5a5489bdc201da11 Mon Sep 17 00:00:00 2001 From: Dario Tranchitella Date: Mon, 23 May 2022 16:52:29 +0200 Subject: [PATCH] chore(ci): upgrade to go 1.18 --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2f40efd..410af80 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,6 +12,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - uses: actions/setup-go@v2 + with: + go-version: '1.18' - name: Run golangci-lint uses: golangci/golangci-lint-action@v2.3.0 with: @@ -27,7 +30,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-go@v2 with: - go-version: '1.17' + go-version: '1.18' - run: make yaml-installation-file - name: Checking if YAML installer file is not aligned run: if [[ $(git diff | wc -l) -gt 0 ]]; then echo ">>> Untracked generated files have not been committed" && git --no-pager diff && exit 1; fi