Skip to content

Commit

Permalink
go 1.21 (#1610)
Browse files Browse the repository at this point in the history
  • Loading branch information
lolopinto authored Aug 17, 2023
1 parent 796e0a7 commit 61f1bd1
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
go-version: '1.21'
check-latest: true
cache: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
go-version: '1.21'
check-latest: true
cache: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
go-version: '1.21'

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/advanced-topics/running-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ There's 3 major runtimes we use:

Here's the steps to install locally:

* Install [golang](https://golang.org/doc/install#download) version of 1.20
* Install [golang](https://golang.org/doc/install#download) version of 1.21
* Get the latest version of the Ent CLI:

```shell
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ require (
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)

go 1.20
go 1.21
8 changes: 4 additions & 4 deletions ts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
ARG GOLANG_VERSION=v0.1.0-alpha.49
ARG AUTO_SCHEMA_VERSION=0.0.26
ARG GOLANG_VERSION=v0.1.4
ARG AUTO_SCHEMA_VERSION=0.0.29
ARG NODE_VERSION=18
ARG DOCKER_TAG=v0.1.0-alpha.37
ARG DOCKER_TAG=v0.1.4

# get and install tsent
FROM --platform=$BUILDPLATFORM golang:1.20-buster As golang-image
FROM --platform=$BUILDPLATFORM golang:1.21-bullseye As golang-image
ARG GOLANG_VERSION
ARG DOCKER_TAG
ENV GOPATH=$HOME/go
Expand Down
2 changes: 1 addition & 1 deletion ts/Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG NODE_VERSION={{.NodeVersion}}
ARG DOCKER_TAG={{.DockerTag}}

# get and install tsent
FROM golang:1.20-buster AS golang-image
FROM golang:1.21-bullseye AS golang-image
ARG GOLANG_VERSION
ARG DOCKER_TAG
ENV GOPATH=$HOME/go
Expand Down

0 comments on commit 61f1bd1

Please sign in to comment.