Browse Source

Merge pull request #9708 from milas/golang-1.18.5

build: bump to Go 1.18.5
Guillaume Lours 3 years ago
parent
commit
d0d06d414d
4 changed files with 6 additions and 6 deletions
  1. 1 1
      .github/workflows/ci.yml
  2. 2 2
      .github/workflows/release.yaml
  3. 2 2
      Dockerfile
  4. 1 1
      docs/docs.Dockerfile

+ 1 - 1
.github/workflows/ci.yml

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

+ 2 - 2
.github/workflows/release.yaml

@@ -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

+ 2 - 2
Dockerfile

@@ -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

+ 1 - 1
docs/docs.Dockerfile

@@ -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