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