chore(ci): upgrade to go 1.18

This commit is contained in:
Dario Tranchitella
2022-05-23 16:52:29 +02:00
parent 6d7d900ac2
commit 243dbddc69

View File

@@ -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