diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml index 9c1f999..a5ea795 100644 --- a/.github/workflows/go.yaml +++ b/.github/workflows/go.yaml @@ -20,7 +20,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.6 + go-version: 1.17.7 - name: Build run: make build test: @@ -30,7 +30,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.6 + go-version: 1.17.7 - name: Formatting run: if [ -n "$(go fmt)" ]; then echo 'Code is not formatted with "go fmt"'; false; fi - name: Test diff --git a/CHANGELOG.md b/CHANGELOG.md index b871878..d11785b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.14.2] - 2022-02-13 +### Updates +- Update docker.io/library/golang Docker tag to v1.17.7 + ## [0.14.1] - 2022-02-13 ### Updates - Update module github.com/slack-go/slack to v0.10.2 diff --git a/Dockerfile b/Dockerfile index 5bc3bf6..2907e7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/library/golang:1.17.6 AS builder +FROM docker.io/library/golang:1.17.7 AS builder WORKDIR /go/src/github.com/karl-johan-grahn/devopsbot