Skip to content

Commit

Permalink
bump golang version in code and ci pipeline (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
agbpatro authored Oct 30, 2024
1 parent 5c18d47 commit be9aac1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20.3
go-version: 1.23.0

- name: Set up protoc
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Start by building the application.
FROM golang:1.20.5-bullseye as build
FROM golang:1.23.0-bullseye as build

# build libsodium (dep of libzmq)
WORKDIR /build
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/teslamotors/fleet-telemetry

go 1.20
go 1.23

require (
cloud.google.com/go/pubsub v1.30.0
Expand Down
2 changes: 1 addition & 1 deletion test/integration/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# build executable and run integration tests
FROM golang:1.20.5-bullseye
FROM golang:1.23.0-bullseye

# build libsodium (dep of libzmq)
WORKDIR /build
Expand Down

0 comments on commit be9aac1

Please sign in to comment.