diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5e568885a..ab68eee41 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,7 +24,7 @@ env: # /dev.Dockerfile # /make/builder.Dockerfile # /.github/workflows/release.yml - GO_VERSION: 1.18 + GO_VERSION: 1.18.2 jobs: ######################## diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e7bf7e830..f1b5903ed 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,7 +16,7 @@ env: # /dev.Dockerfile # /make/builder.Dockerfile # /.github/workflows/main.yml - GO_VERSION: 1.18 + GO_VERSION: 1.18.2 jobs: main: diff --git a/.travis.yml b/.travis.yml index e65c2137c..94a7c8796 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ go: # /make/builder.Dockerfile # /.github/workflows/main.yml # /.github/workflows/release.yml - - "1.18.x" + - "1.18.2" env: global: diff --git a/Dockerfile b/Dockerfile index 0237fb88c..3a7a06212 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # /make/builder.Dockerfile # /.github/workflows/main.yml # /.github/workflows/release.yml -FROM golang:1.18-alpine as builder +FROM golang:1.18.2-alpine as builder # Force Go to use the cgo based DNS resolver. This is required to ensure DNS # queries required to connect to linked containers succeed. diff --git a/dev.Dockerfile b/dev.Dockerfile index df77303e7..4440dfc4f 100644 --- a/dev.Dockerfile +++ b/dev.Dockerfile @@ -4,7 +4,7 @@ # /make/builder.Dockerfile # /.github/workflows/main.yml # /.github/workflows/release.yml -FROM golang:1.17.3-alpine as builder +FROM golang:1.18.2-alpine as builder LABEL maintainer="Olaoluwa Osuntokun " diff --git a/make/builder.Dockerfile b/make/builder.Dockerfile index 0c5049ba2..8d23acc7d 100644 --- a/make/builder.Dockerfile +++ b/make/builder.Dockerfile @@ -4,7 +4,7 @@ # /dev.Dockerfile # /.github/workflows/main.yml # /.github/workflows/release.yml -FROM golang:1.18-buster +FROM golang:1.18.2-buster MAINTAINER Olaoluwa Osuntokun diff --git a/tools/Dockerfile b/tools/Dockerfile index 452c92738..d122abed7 100644 --- a/tools/Dockerfile +++ b/tools/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.18.0-buster +FROM golang:1.18.2-buster RUN apt-get update && apt-get install -y git ENV GOCACHE=/tmp/build/.cache