From 8c4f7e717af300dd23abe5e1cd240ac24013f922 Mon Sep 17 00:00:00 2001 From: Camila Macedo Date: Fri, 22 Mar 2024 11:06:13 +0000 Subject: [PATCH] Pinning go version 1.20 which is the same used to release Signed-off-by: Camila Macedo --- .github/workflows/binaries.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/test-pki.yml | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index 05d72cdd..9d43ad6b 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: '~1.19' + go-version: '~1.20' - name: Build All Binaries run: make build diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c1c4a9ce..8584645d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,7 +10,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '~1.19' + go-version: '~1.20' - name: Clone the code uses: actions/checkout@v4 - name: Install linter diff --git a/.github/workflows/test-pki.yml b/.github/workflows/test-pki.yml index 911003e9..4a2c16a4 100644 --- a/.github/workflows/test-pki.yml +++ b/.github/workflows/test-pki.yml @@ -10,7 +10,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: '~1.19' + go-version: '~1.20' - name: Clone the code uses: actions/checkout@v4 - name: Setup test deps diff --git a/go.mod b/go.mod index bbb054ed..942d8f92 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/foundriesio/fioctl -go 1.19 +go 1.20 require ( cloud.google.com/go/pubsub v1.36.1