Bump Go and external deps versions

This commit is contained in:
Timur Demin 2021-09-17 22:42:28 +05:00
parent 7e19930b1b
commit c476976b27
No known key found for this signature in database
GPG key ID: 9EDF3F9D9286FA20
3 changed files with 5 additions and 5 deletions

View file

@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17
- name: Run goreleaser
uses: goreleaser/goreleaser-action@v2
with:

View file

@ -12,10 +12,10 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17
- name: Run tests
run: go test -v ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.41.1
version: v1.42.1

View file

@ -1,4 +1,4 @@
FROM golang:1.16-alpine AS builder
FROM golang:1.17-alpine AS builder
WORKDIR /src
@ -14,7 +14,7 @@ RUN \
go build -v -o /tmp/gmnhg ./cmd/gmnhg && \
go build -v -o /tmp/md2gmn ./cmd/md2gmn
FROM alpine:3.12 AS runner
FROM alpine:3.14 AS runner
LABEL maintainer "Timur Demin <me@tdem.in>"