Merge pull request #71 from hikhvar/go117

Use go 1.17 for releases
This commit is contained in:
Christoph Petrausch
2021-09-22 21:44:54 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
# Test oldest and newest supported version
go-version: [1.14.x, 1.16.x]
go-version: [1.14.x, 1.17.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:

View File

@@ -1,4 +1,4 @@
FROM golang:1.16 as builder
FROM golang:1.17 as builder
COPY . /build/mqtt2prometheus
WORKDIR /build/mqtt2prometheus