Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update golang and driver versions. #399

Merged
merged 5 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/[email protected]
with:
go-version: ^1.22
go-version: 1.21.x
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
TEST_INFRA_VERSION ?= latest

# Version of gRPC core used for the gRPC driver
DRIVER_VERSION ?= v1.62.1
DRIVER_VERSION ?= v1.68.0

# Prefix for all images used as clone and ready containers, enabling use with
# registries other than Docker Hub
Expand Down
2 changes: 1 addition & 1 deletion config/defaults_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ languages:
runImage: "{{ .RunImagePrefix }}cxx:{{ .Version }}"

- language: go
buildImage: golang:1.20
buildImage: golang:1.22
paulosjca marked this conversation as resolved.
Show resolved Hide resolved
runImage: "{{ .RunImagePrefix }}go:{{ .Version }}"

- language: java
Expand Down
2 changes: 1 addition & 1 deletion containers/runtime/controller/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.20 as builder
FROM golang:1.21 AS builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
Loading