From 35ede92c355bd5c38a8e3d93a6ff81e33d06dfc1 Mon Sep 17 00:00:00 2001 From: BenjaminCh Date: Tue, 19 Mar 2024 16:35:47 +0100 Subject: [PATCH] chore: bump go version to 1.21 --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 2 +- .github/workflows/release_latest.yml | 2 +- Dockerfile | 2 +- go.mod | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 68ed1d35..a9626532 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: 1.21 - name: Check out source code uses: actions/checkout@v3 @@ -34,7 +34,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: 1.19 + go-version: 1.21 - name: Check out source code uses: actions/checkout@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 75494057..15744f4b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Go uses: actions/setup-go@master with: - go-version: 1.19.x + go-version: 1.21.x - name: golangci-lint uses: golangci/golangci-lint-action@v2 with: diff --git a/.github/workflows/release_latest.yml b/.github/workflows/release_latest.yml index 89c9b736..d3f0c1b7 100644 --- a/.github/workflows/release_latest.yml +++ b/.github/workflows/release_latest.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Go uses: actions/setup-go@master with: - go-version: 1.19.x + go-version: 1.21.x - name: Run GoReleaser uses: goreleaser/goreleaser-action@v1 diff --git a/Dockerfile b/Dockerfile index e7c7c50d..6494ef9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.19 as builder +FROM golang:1.21 as builder # Set the working directory within the container WORKDIR /app diff --git a/go.mod b/go.mod index 676d5ffb..5661d1c6 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/qovery/qovery-cli -go 1.19 +go 1.21 require ( github.com/AlecAivazis/survey/v2 v2.3.6