From 895643f2bb1cf1747c869a60eb806f68f200d659 Mon Sep 17 00:00:00 2001 From: Sean Malloy Date: Wed, 12 May 2021 23:16:26 -0500 Subject: [PATCH 1/2] chore: bump to Go 1.16.4 --- .github/workflows/pipeline.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 0ca04a5..4cc65a1 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -12,7 +12,7 @@ jobs: test: strategy: matrix: - go-version: [1.16.3] + go-version: [1.16.4] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: diff --git a/Dockerfile b/Dockerfile index af86d1b..0aafd28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16.3 AS builder +FROM golang:1.16.4 AS builder WORKDIR /go/src/github.com/KohlsTechnology/blackbox-helloworld-responder COPY . . From a46ee5eb94c8b31bce5362f1ef56f36a3001e18e Mon Sep 17 00:00:00 2001 From: Sean Malloy Date: Wed, 12 May 2021 23:16:57 -0500 Subject: [PATCH 2/2] chore: release v0.1.8 --- pkg/version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/version/version.go b/pkg/version/version.go index a8293f0..fbc84f4 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -26,7 +26,7 @@ var ( Branch string BuildDate string GitSHA1 string - Version = "v0.1.7" + Version = "v0.1.8" ) // Get returns the version string with some additional details