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