From 452ece03291b0675df7fba1e1f8ad43f7368efa4 Mon Sep 17 00:00:00 2001 From: Lukasz Mierzwa Date: Thu, 9 Dec 2021 17:09:28 +0000 Subject: [PATCH] Update go to 1.17.5 --- .github/workflows/compile.yml | 2 +- .github/workflows/go-mod-tidy.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index ecf4f705..aa68e7e6 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.3 + go-version: 1.17.5 - name: Check out code uses: actions/checkout@v2 diff --git a/.github/workflows/go-mod-tidy.yml b/.github/workflows/go-mod-tidy.yml index 90c4d2c8..0c668afc 100644 --- a/.github/workflows/go-mod-tidy.yml +++ b/.github/workflows/go-mod-tidy.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.3 + go-version: 1.17.5 - name: Run go mod tidy run: go mod tidy diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bfa6f2e9..566c459a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,7 +15,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.3 + go-version: 1.17.5 - name: Check out code uses: actions/checkout@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b57d3441..3d98fbc0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.17.3 + go-version: 1.17.5 - name: Test run: make test diff --git a/Dockerfile b/Dockerfile index 3c9a012f..eec2ce9b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.17.4-alpine +FROM golang:1.17.5-alpine COPY . /src WORKDIR /src RUN go build ./cmd/pint