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