Skip to content

Commit

Permalink
Update to Go 1.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
josephglanville committed Mar 10, 2023
1 parent 483fd1e commit b426a5f
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.19
go-version: 1.20.2
id: go

- name: Set up protoc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: 1.19
go-version: 1.20.2
id: go

- name: Set up protoc
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19-alpine as base
FROM golang:1.20.2-alpine as base
MAINTAINER [email protected]

ENV GOPATH /go
Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-citus
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM citusdata/citus:11.1

ARG TARGETARCH

ENV GOVERSION 1.19
ENV GOVERSION 1.20.2
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-guided-setup
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ STOPSIGNAL SIGRTMIN+3
ENTRYPOINT ["/lib/systemd/systemd"]
CMD ["--log-level=info"]

ENV GOVERSION 1.19
ENV GOVERSION 1.20.2
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg10
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM postgres:10-bullseye

ARG TARGETARCH

ENV GOVERSION 1.19
ENV GOVERSION 1.20.2
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg11
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM postgres:11-bullseye

ARG TARGETARCH

ENV GOVERSION 1.19
ENV GOVERSION 1.20.2
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg12
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM postgres:12

ARG TARGETARCH

ENV GOVERSION 1.19
ENV GOVERSION 1.20.2
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg13
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM postgres:13

ARG TARGETARCH

ENV GOVERSION 1.19
ENV GOVERSION 1.20.2
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg14
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM postgres:14

ARG TARGETARCH

ENV GOVERSION 1.19
ENV GOVERSION 1.20.2
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-pg15
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM postgres:15

ARG TARGETARCH

ENV GOVERSION 1.19
ENV GOVERSION 1.20.2
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion integration_test/Dockerfile.test-reload
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ STOPSIGNAL SIGRTMIN+3
ENTRYPOINT ["/lib/systemd/systemd"]
CMD ["--log-level=info"]

ENV GOVERSION 1.19
ENV GOVERSION 1.20.2
ENV CODE_DIR /collector
ENV PATH $PATH:/usr/local/go/bin

Expand Down
2 changes: 1 addition & 1 deletion packages/src/Dockerfile.build.deb-systemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:buster

ARG TARGETARCH
ENV GOPATH /go
ENV GOVERSION 1.19
ENV GOVERSION 1.20.2
ENV CODE_DIR $GOPATH/src/github.com/pganalyze/collector
ENV PATH $PATH:/usr/local/go/bin
ENV ROOT_DIR /root
Expand Down
2 changes: 1 addition & 1 deletion packages/src/Dockerfile.build.rpm-systemd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM centos:7

ARG TARGETARCH
ENV GOPATH /go
ENV GOVERSION 1.19
ENV GOVERSION 1.20.2
ENV CODE_DIR $GOPATH/src/github.com/pganalyze/collector
ENV PATH $PATH:/usr/local/go/bin
ENV ROOT_DIR /root
Expand Down

0 comments on commit b426a5f

Please sign in to comment.