Skip to content

Commit

Permalink
Update Go version to 1.22 (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyiliev authored Sep 4, 2024
1 parent ac01ab6 commit 18c90e9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21-alpine
FROM golang:1.22-alpine

COPY --from=hashicorp/terraform:1.8.2 /bin/terraform /bin/terraform

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This repository contains a Terraform provider for managing resources in a [Mater

* Materialize >= 0.27
* [Terraform](https://www.terraform.io/downloads.html) >= 1.0.3
* (Development) [Go](https://golang.org/doc/install) >= 1.21
* (Development) [Go](https://golang.org/doc/install) >= 1.22

## Installation

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/MaterializeInc/terraform-provider-materialize

go 1.21
go 1.22

require (
github.com/DATA-DOG/go-sqlmock v1.5.2
Expand Down
2 changes: 1 addition & 1 deletion mocks/cloud/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Start from the official Golang base image
FROM golang:1.21 as builder
FROM golang:1.22 as builder

# Set the Current Working Directory inside the container
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion mocks/cloud/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module cloud-mockserver

go 1.21
go 1.22

0 comments on commit 18c90e9

Please sign in to comment.