Skip to content

Commit

Permalink
Go 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
jiujiteiro committed Mar 23, 2023
1 parent 3640699 commit 49cab59
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.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.19
go-version: 1.20
check-latest: true
- name: release dry run
run: make release-dry-run
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ localnet-show-logstream:
###############################################################################

PACKAGE_NAME:=github.com/realiotech/realio-network
GOLANG_CROSS_VERSION = v1.19
GOLANG_CROSS_VERSION = v1.20
GOPATH ?= '$(HOME)/go'
release-dry-run:
docker run \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@



**Note**: Requires [Go 1.19](https://golang.org/dl/)
**Note**: Requires [Go 1.20](https://golang.org/dl/)

## 1. Description

Expand Down
4 changes: 2 additions & 2 deletions networks/local/realio-network/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19-bullseye as build-env
FROM golang:1.20-bullseye as build-env

# Install minimum necessary dependencies
ENV PACKAGES curl make git libc-dev bash gcc
Expand All @@ -15,7 +15,7 @@ COPY . .
RUN make build

# Final image
FROM golang:1.19-bullseye as final
FROM golang:1.20-bullseye as final

WORKDIR /

Expand Down

0 comments on commit 49cab59

Please sign in to comment.