From fe5c7cac5df79edea65a79c2a5c57d66fed8f08e Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Wed, 15 Jun 2022 18:10:49 +0200 Subject: [PATCH] Update to Go 1.17 --- .github/workflows/build_binaries.yaml | 2 +- .github/workflows/integration_tests.yaml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_binaries.yaml b/.github/workflows/build_binaries.yaml index a2ae84c..fc0aef5 100644 --- a/.github/workflows/build_binaries.yaml +++ b/.github/workflows/build_binaries.yaml @@ -8,7 +8,7 @@ jobs: name: Build and publish binaries strategy: matrix: - go-version: [ 1.16.x ] + go-version: [ 1.17.x ] platform: [ ubuntu-latest ] runs-on: ${{ matrix.platform }} steps: diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index f583352..bce1ef3 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -7,7 +7,7 @@ jobs: test: strategy: matrix: - go-version: [ 1.16.x ] + go-version: [ 1.17.x ] platform: [ ubuntu-latest ] runs-on: ${{ matrix.platform }} services: diff --git a/Dockerfile b/Dockerfile index 2699042..82c2ef1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.16-alpine as builder +FROM golang:1.17-alpine as builder # Move to working directory /build WORKDIR /build