From 98c49522faa6e80de711a67c00e184da2ca6b293 Mon Sep 17 00:00:00 2001 From: Yash Mehrotra Date: Thu, 20 Jul 2023 07:07:56 +0530 Subject: [PATCH] fix: go version in release pipeline --- .github/workflows/release.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b82c8c8e..aec1418e7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: - name: Install Go uses: actions/setup-go@v3 with: - go-version: v1.19.x + go-version: v1.20.x - uses: actions/cache@v2 with: path: | diff --git a/Dockerfile b/Dockerfile index f076e67dd..f6857a037 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20.6 as builder +FROM golang:1.20 as builder WORKDIR /app ARG VERSION