From 29ae7fa60123374599c77449a47238e9815ff71a Mon Sep 17 00:00:00 2001 From: Amir Raminfar Date: Wed, 12 Aug 2020 16:55:38 -0700 Subject: [PATCH] Updates to Go1.15 (#629) --- .github/workflows/deploy.yml | 2 +- .github/workflows/test.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index dc062187..bf1793c9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,7 +23,7 @@ jobs: - name: Install Go uses: actions/setup-go@v1 with: - go-version: 1.14.x + go-version: 1.15.x - name: Checkout code uses: actions/checkout@v2 - name: Run Go Tests with Coverage diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1af4a16d..4e620722 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: - name: Install Go uses: actions/setup-go@v1 with: - go-version: 1.14.x + go-version: 1.15.x - name: Checkout code uses: actions/checkout@v2 - name: Run Go Tests with Coverage diff --git a/Dockerfile b/Dockerfile index 757dbacc..9bce54e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ COPY assets ./assets # Do the build RUN yarn build -FROM golang:1.14-alpine AS builder +FROM golang:1.15-alpine AS builder RUN apk add --no-cache git ca-certificates RUN mkdir /dozzle