Skip to content

Commit

Permalink
update go version
Browse files Browse the repository at this point in the history
  • Loading branch information
augustbleeds committed Oct 10, 2024
1 parent bc02ee1 commit 59b42c6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Languages
nodejs 18.6.0
yarn 1.22.19
golang 1.21.5
golang 1.22.7
python 3.9.13


# Tools
mockery 2.22.1
golangci-lint 1.55.0
Expand Down
4 changes: 1 addition & 3 deletions relayer/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/smartcontractkit/chainlink-starknet/relayer

go 1.22.0

toolchain go1.22.5
go 1.22.7

require (
github.com/NethermindEth/juno v0.3.1
Expand Down
6 changes: 5 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
scriptDir,
}:
with pkgs; let
go = pkgs.go_1_21;
go = pkgs.go_1_22;

mkShell' = mkShell.override {
# juno requires building with clang, not gcc
Expand Down Expand Up @@ -57,7 +57,11 @@ in
mkdir -p $GOBIN
export PATH=$GOBIN:$PATH
# install gotestloghelper
<<<<<<< Updated upstream
# TODO restore latest after versioning is fixed
go install github.com/smartcontractkit/chainlink-testing-framework/tools/gotestloghelper@bb160ff1069a807693b2c76691c55cb17959fbb5
=======
go install github.com/smartcontractkit/chainlink-testing-framework/tools/gotestloghelper@latest
>>>>>>> Stashed changes
'';
}

0 comments on commit 59b42c6

Please sign in to comment.