From 010ba8c2cb1b45a5d13a3cc86dfffad28473b0bb Mon Sep 17 00:00:00 2001 From: Mohammed Sohail Date: Fri, 24 Feb 2023 16:48:23 +0000 Subject: [PATCH] bump: go version -> 1.20.X --- .github/workflows/binary_release.yaml | 2 +- Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/binary_release.yaml b/.github/workflows/binary_release.yaml index 849341a..5b4912a 100644 --- a/.github/workflows/binary_release.yaml +++ b/.github/workflows/binary_release.yaml @@ -26,7 +26,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.19 + go-version: 1.20.1 - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 diff --git a/Dockerfile b/Dockerfile index f9a4b69..1bca9c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.19-bullseye as build +FROM golang:1.20-bullseye as build WORKDIR /build COPY . . diff --git a/go.mod b/go.mod index a0082f7..23ceeff 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/grassrootseconomics/cic-custodial -go 1.19 +go 1.20 require ( github.com/VictoriaMetrics/metrics v1.23.1