Skip to content

Commit

Permalink
chore: upgrade GO version to 1.19 (#2635)
Browse files Browse the repository at this point in the history
  • Loading branch information
atzoum committed Nov 1, 2022
1 parent 4369abf commit 768be08
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '~1.18.5'
go-version: '~1.19.2'
check-latest: true
cache: true
- run: go version
Expand All @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: '~1.18.5'
go-version: '~1.19.2'
check-latest: true
cache: true
- run: go version
Expand All @@ -68,7 +68,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: '~1.18.5'
go-version: '~1.19.2'
check-latest: true
cache: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/verify.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
check-latest: true
cache: true
go-version: '~1.18.5'
go-version: '~1.19.2'
- run: go version

- run: go mod tidy
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '~1.18.5'
go-version: '~1.19.2'
check-latest: true
cache: true
- name: golangci-lint
Expand Down
2 changes: 1 addition & 1 deletion .golangci.yml
@@ -1,6 +1,6 @@
run:
timeout: 5m
go: '1.18'
go: '1.19'
skip-dirs:
- enterprise
- event-schema
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,6 +1,6 @@

# syntax=docker/dockerfile:1
ARG GO_VERSION=1.18
ARG GO_VERSION=1.19
ARG ALPINE_VERSION=3.16
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion build/Dockerfile-warehouse-integration
@@ -1,4 +1,4 @@
FROM golang:1.18.5-alpine3.15
FROM golang:1.19.2-alpine3.15
RUN apk add --no-cache build-base
RUN mkdir /app
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,6 +1,6 @@
module github.com/rudderlabs/rudder-server

go 1.18
go 1.19

replace (
// FIXME: this is a hacky way to address vulnerabilities in indirect dependencies
Expand Down
1 change: 1 addition & 0 deletions proto/common/dpauth.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 768be08

Please sign in to comment.