Skip to content

Commit

Permalink
build: bump go to v1.19.4
Browse files Browse the repository at this point in the history
  • Loading branch information
positiveblue committed Jan 4, 2023
1 parent 3f7eac8 commit 3e44bf4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
# If you change this value, please change it in the following files as well:
# /.travis.yml
# /Dockerfile
GO_VERSION: 1.18.5
GO_VERSION: 1.19.4

jobs:
########################
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM} golang:1.18.5-alpine as builder
FROM --platform=${BUILDPLATFORM} golang:1.19.4-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.
Expand Down
2 changes: 1 addition & 1 deletion gen/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18.5-bullseye
FROM golang:1.19.4-bullseye

RUN go install github.com/golang/mock/mockgen@73266f9366fcf2ccef0b880618e5a9266e4136f4

Expand Down
2 changes: 1 addition & 1 deletion poolrpc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18.5-buster
FROM golang:1.19.4-buster

RUN apt-get update && apt-get install -y \
git \
Expand Down
4 changes: 2 additions & 2 deletions tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18.5-buster
FROM golang:1.19.4-buster

RUN apt-get update && apt-get install -y git
ENV GOCACHE=/tmp/build/.cache
Expand All @@ -13,4 +13,4 @@ RUN cd /tmp \
&& go install -trimpath -tags=tools github.com/golangci/golangci-lint/cmd/golangci-lint \
&& chmod -R 777 /tmp/build/

WORKDIR /build
WORKDIR /build

0 comments on commit 3e44bf4

Please sign in to comment.