From 22de83179d75af1b42f2bd5388ab6159e80985da Mon Sep 17 00:00:00 2001 From: Will McCutchen <will@mccutch.org> Date: Wed, 5 May 2021 10:56:07 -0400 Subject: [PATCH] Bump go version --- .github/workflows/continuous_delivery.yaml | 4 ++++ Dockerfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous_delivery.yaml b/.github/workflows/continuous_delivery.yaml index 9139359..3800606 100644 --- a/.github/workflows/continuous_delivery.yaml +++ b/.github/workflows/continuous_delivery.yaml @@ -20,6 +20,8 @@ jobs: steps: - name: Setup uses: actions/setup-go@v2 + with: + go-version: '1.16' - name: Checkout uses: actions/checkout@v2 @@ -46,6 +48,8 @@ jobs: go_version: - '1.13' - '1.14' + - '1.15' + steps: - name: Setup uses: actions/setup-go@v2 diff --git a/Dockerfile b/Dockerfile index 31e9571..b8df744 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.15 +FROM golang:1.16 WORKDIR /go/src/github.com/mccutchen/go-httpbin -- GitLab