From fec132df47f498d634b136069621ce9be1339a22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Nussbaumer?= Date: Fri, 12 Jan 2024 17:11:14 +0100 Subject: [PATCH] build: bump go version in gh-actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Clément Nussbaumer --- .github/workflows/ci-helm-deploy-nginx.yml | 2 +- .github/workflows/ci-helm-deploy-traefik.yml | 2 +- .github/workflows/ci-kustomize-deploy.yml | 2 +- .github/workflows/lint.yml | 5 ++++- .github/workflows/release.yml | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-helm-deploy-nginx.yml b/.github/workflows/ci-helm-deploy-nginx.yml index 0a17845d..91acc07f 100644 --- a/.github/workflows/ci-helm-deploy-nginx.yml +++ b/.github/workflows/ci-helm-deploy-nginx.yml @@ -12,7 +12,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '1.20' + go-version: '1.21' - name: GoReleaser uses: goreleaser/goreleaser-action@v4 with: diff --git a/.github/workflows/ci-helm-deploy-traefik.yml b/.github/workflows/ci-helm-deploy-traefik.yml index a27d8824..568fe43b 100644 --- a/.github/workflows/ci-helm-deploy-traefik.yml +++ b/.github/workflows/ci-helm-deploy-traefik.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '1.20' + go-version: '1.21' - name: GoReleaser uses: goreleaser/goreleaser-action@v4 with: diff --git a/.github/workflows/ci-kustomize-deploy.yml b/.github/workflows/ci-kustomize-deploy.yml index e90a126f..99be8735 100644 --- a/.github/workflows/ci-kustomize-deploy.yml +++ b/.github/workflows/ci-kustomize-deploy.yml @@ -12,7 +12,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '1.20' + go-version: '1.21' - name: GoReleaser uses: goreleaser/goreleaser-action@v4 with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 543083a3..6bc8ea4e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,6 +7,9 @@ jobs: lint-go: runs-on: ubuntu-latest steps: + - uses: actions/setup-go@v5 + with: + go-version: '1.21' - uses: actions/checkout@v4 - uses: golangci/golangci-lint-action@v3 with: @@ -26,7 +29,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: '1.20' + go-version: '1.21' - name: Run unit tests run: go test -race -covermode atomic -coverprofile=profile.cov ./... - name: Send coverage report diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4e613fc3..7e2557c8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '1.20' + go-version: '1.21' - name: Login to DockerHub uses: docker/login-action@v3 with: