diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6680ee3..af5c035 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: arch: [amd64] # amd64, 386 steps: - uses: actions/setup-go@v2 - with: {go-version: 1.17.1} + with: {go-version: 1.17.2} - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index c02bab3..8e78e6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver]. +## UNRELEASED + +### Changed + +- Go updated from `1.17.1` up to `1.17.2` + ## v2.2.0 ### Added diff --git a/Dockerfile b/Dockerfile index 833355e..bc2d9a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1.2 # Image page: -FROM golang:1.17.1-alpine as builder +FROM golang:1.17.2-alpine as builder # can be passed with any prefix (like `v1.2.3@GITHASH`), e.g.: `docker build --build-arg "APP_VERSION=v1.2.3@GITHASH" .` ARG APP_VERSION="undefined@docker" diff --git a/docker-compose.yml b/docker-compose.yml index c53cacf..fae3484 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ volumes: services: app: &app-service - image: golang:1.17.1-buster # Image page: + image: golang:1.17.2-buster # Image page: working_dir: /src environment: HOME: /tmp