From 52ebafced21505f4bcd56c0fcbebe9a6b8bddf30 Mon Sep 17 00:00:00 2001 From: AnkushinDaniil Date: Fri, 16 Aug 2024 13:12:12 +0300 Subject: [PATCH] Update Go version to 1.23.0 --- .github/workflows/juno-test.yml | 14 +++++++------- README.md | 2 +- docs/docs/running-juno.md | 2 +- docs/versioned_docs/version-0.11.8/running-juno.md | 2 +- go.mod | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/juno-test.yml b/.github/workflows/juno-test.yml index f73c2cfd1e..66591688aa 100644 --- a/.github/workflows/juno-test.yml +++ b/.github/workflows/juno-test.yml @@ -13,8 +13,8 @@ jobs: strategy: fail-fast: false matrix: - go: [ '1.22.2' ] - os: [ ubuntu-latest, macos-latest, ubuntu-arm64-2-core] + go: ["1.23.0"] + os: [ubuntu-latest, macos-latest, ubuntu-arm64-2-core] runs-on: ${{ matrix.os }} env: VM_DEBUG: true @@ -31,7 +31,7 @@ jobs: vm/rust core/rust starknet/rust - + - name: Install deps run: make install-deps @@ -51,10 +51,10 @@ jobs: if: matrix.os != 'ubuntu-latest' run: make test -# Tests with race condition detector are flaky; we're disabling them for now -# - name: Tests (Race Detection) -# if: matrix.os == 'ubuntu-latest' -# run: make test-race + # Tests with race condition detector are flaky; we're disabling them for now + # - name: Tests (Race Detection) + # if: matrix.os == 'ubuntu-latest' + # run: make test-race - name: Upload coverage to Codecov if: matrix.os == 'ubuntu-latest' diff --git a/README.md b/README.md index 8d66d0a37b..7a5413f34d 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ ### Prerequisites -- Golang 1.22 or higher is required to build and run the project. You can find the installer on +- Golang 1.23 or higher is required to build and run the project. You can find the installer on the official Golang [download](https://go.dev/doc/install) page. - [Rust](https://www.rust-lang.org/tools/install). - A C compiler: `gcc` or `clang`. diff --git a/docs/docs/running-juno.md b/docs/docs/running-juno.md index 4f7208cd8c..9646be8f36 100644 --- a/docs/docs/running-juno.md +++ b/docs/docs/running-juno.md @@ -82,7 +82,7 @@ You can build the Juno binary or Docker image from the source code to access the ### Prerequisites -- [Golang 1.22](https://go.dev/doc/install) or later +- [Golang 1.23](https://go.dev/doc/install) or later - [Rust](https://www.rust-lang.org/tools/install) - C compiler: `gcc` or `clang` - [jemalloc](https://github.com/jemalloc/jemalloc) diff --git a/docs/versioned_docs/version-0.11.8/running-juno.md b/docs/versioned_docs/version-0.11.8/running-juno.md index 4f7208cd8c..9646be8f36 100644 --- a/docs/versioned_docs/version-0.11.8/running-juno.md +++ b/docs/versioned_docs/version-0.11.8/running-juno.md @@ -82,7 +82,7 @@ You can build the Juno binary or Docker image from the source code to access the ### Prerequisites -- [Golang 1.22](https://go.dev/doc/install) or later +- [Golang 1.23](https://go.dev/doc/install) or later - [Rust](https://www.rust-lang.org/tools/install) - C compiler: `gcc` or `clang` - [jemalloc](https://github.com/jemalloc/jemalloc) diff --git a/go.mod b/go.mod index 365de44244..6b096308b8 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,7 @@ module github.com/NethermindEth/juno // if version specified as "1.22" (without bugfix) it breaks CodeQL github build -go 1.22.2 +go 1.23.0 require ( github.com/Masterminds/semver/v3 v3.2.1