Merge pull request #9708 from milas/golang-1.18.5

build: bump to Go 1.18.5
This commit is contained in:
Guillaume Lours 2022-08-02 19:49:15 +02:00 committed by GitHub
commit d0d06d414d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View File

@ -12,7 +12,7 @@ on:
required: false
default: "false"
env:
GO_VERSION: 1.18.4
GO_VERSION: 1.18.5
jobs:
lint:
name: Lint

View File

@ -7,7 +7,7 @@ on:
description: "Release Tag"
required: true
env:
GO_VERSION: 1.18.4
GO_VERSION: 1.18.5
jobs:
upload-release:
runs-on: ubuntu-latest
@ -23,7 +23,7 @@ jobs:
- name: Setup docker CLI
run: |
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.3.tgz | tar xz
curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.17.tgz | tar xz
sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version
- name: Build

View File

@ -15,8 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
ARG GO_VERSION=1.18.4-alpine
ARG GOLANGCI_LINT_VERSION=v1.46.2-alpine
ARG GO_VERSION=1.18.5-alpine
ARG GOLANGCI_LINT_VERSION=v1.47.3-alpine
ARG PROTOC_GEN_GO_VERSION=v1.4.3
FROM --platform=${BUILDPLATFORM} golangci/golangci-lint:${GOLANGCI_LINT_VERSION} AS local-golangci-lint

View File

@ -15,7 +15,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
ARG GO_VERSION=1.18.4
ARG GO_VERSION=1.18.5
ARG FORMATS=md,yaml
FROM --platform=${BUILDPLATFORM} golang:${GO_VERSION}-alpine AS docsgen