From dd9b527ee602ad550626606e37e73a7b2dc024f1 Mon Sep 17 00:00:00 2001 From: Falk Scheerschmidt Date: Thu, 18 Feb 2021 09:13:38 +0100 Subject: [PATCH] update to go 1.16 --- .github/workflows/integration.yaml | 4 ++-- .github/workflows/release.yaml | 2 +- Dockerfile | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 74cae59..d015e11 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -13,7 +13,7 @@ jobs: - name: Setup go uses: actions/setup-go@v2.1.3 with: - go-version: '1.15.x' + go-version: '1.16.x' - name: Vet run: make vet - name: Test @@ -27,7 +27,7 @@ jobs: - name: Setup go uses: actions/setup-go@v2.1.3 with: - go-version: '1.15.x' + go-version: '1.16.x' - name: Build run: make build diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index dbd31e6..2b241f8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -14,7 +14,7 @@ jobs: - name: Setup go uses: actions/setup-go@v2.1.3 with: - go-version: '1.15.x' + go-version: '1.16.x' - name: Create release artifacts run: make release env: diff --git a/Dockerfile b/Dockerfile index b5815dc..3cc579f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ -FROM golang:1.15.8-alpine -ENV GO111MODULE=on +FROM golang:1.16.0-alpine WORKDIR /go/src/github.com/systemli/prometheus-jitsi-meet-exporter ADD . /go/src/github.com/systemli/prometheus-jitsi-meet-exporter RUN go build -o /prometheus-jitsi-meet-exporter