Skip to content

Commit

Permalink
feat: bump go to 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrus committed Mar 26, 2023
1 parent d330fe6 commit b02ce99
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-benchmarks.yml
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.18"
go-version: "1.19"

- name: Install prerequisites
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-lint.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.18"
go-version: "1.19"
- name: Install gitlint
run: |
python -m pip install gitlint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-test.yaml
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.18"
go-version: "1.19"

- name: Install prerequisites
run: |
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.18"
go-version: "1.19"

- name: Install prerequisites
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
go-version: 1.19
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ Web3 Gateway for Oasis-SDK Paratime EVM module.

### Prerequisites

- [Go](https://go.dev/) (at least version 1.18).
- [Go](https://go.dev/) (at least version 1.19).
- [PostgreSQL](https://www.postgresql.org/) (at least version 13.3).

Additionally, for testing:
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/go.mod
@@ -1,6 +1,6 @@
module github.com/oasisprotocol/oasis-web3-gateway/benchmarks

go 1.18
go 1.19

replace (
// Should be synced with Oasis Core as replace directives are not propagated.
Expand Down
2 changes: 1 addition & 1 deletion docker/common/oasis-deposit/go.mod
@@ -1,6 +1,6 @@
module github.com/oasisprotocol/web3-tests/test/tools/oasis-deposit

go 1.18
go 1.19

require (
github.com/oasisprotocol/oasis-core/go v0.2202.1
Expand Down
2 changes: 1 addition & 1 deletion docker/emerald-dev/Dockerfile
@@ -1,5 +1,5 @@
# Build oasis-web3-gateway
FROM golang:1.18 AS oasis-web3-gateway
FROM golang:1.19 AS oasis-web3-gateway

COPY . /go/oasis-web3-gateway
RUN cd oasis-web3-gateway && make build
Expand Down
2 changes: 1 addition & 1 deletion docker/sapphire-dev/Dockerfile
@@ -1,5 +1,5 @@
# Build oasis-web3-gateway
FROM golang:1.18 AS oasis-web3-gateway
FROM golang:1.19 AS oasis-web3-gateway

COPY . /go/oasis-web3-gateway
RUN cd oasis-web3-gateway && make build
Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,6 +1,6 @@
module github.com/oasisprotocol/oasis-web3-gateway

go 1.18
go 1.19

require (
github.com/ethereum/go-ethereum v1.11.5
Expand Down

0 comments on commit b02ce99

Please sign in to comment.