Skip to content

Commit

Permalink
Update Go version to 1.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AnkushinDaniil committed Aug 16, 2024
1 parent dc46ab3 commit 52ebafc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/juno-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -31,7 +31,7 @@ jobs:
vm/rust
core/rust
starknet/rust
- name: Install deps
run: make install-deps

Expand All @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/running-juno.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/versioned_docs/version-0.11.8/running-juno.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 52ebafc

Please sign in to comment.