Skip to content

Commit

Permalink
chore: bump go version to 1.23.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rach-id committed Feb 11, 2025
1 parent 9b3c193 commit 26ebcb1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.1
go-version: 1.23.5

- name: Verify Go Mod and Go Sum
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: "1.21.1"
go-version: "1.23.5"

- name: Install Foundry
uses: onbjerg/foundry-toolchain@v1
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/celestiaorg/blobstream-contracts/v4

go 1.22

toolchain go1.22.5
go 1.23.5

require github.com/ethereum/go-ethereum v1.14.13

Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile_Environment
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN curl -L https://foundry.paradigm.xyz | bash && . /root/.bashrc && foundryup
RUN wget https://github.com/ethereum/solidity/releases/download/v0.8.22/solc-static-linux -O /usr/bin/solc && chmod +x /usr/bin/solc

# install go
RUN wget https://go.dev/dl/go1.21.1.linux-amd64.tar.gz && rm -rf /usr/local/go && tar -C /usr/local -xzf go1.21.1.linux-amd64.tar.gz && echo 'PATH=$PATH:/usr/local/go/bin:/root/go/bin' >> ~/.bashrc
RUN wget https://go.dev/dl/go1.23.5.linux-amd64.tar.gz && rm -rf /usr/local/go && tar -C /usr/local -xzf go1.23.5.linux-amd64.tar.gz && echo 'PATH=$PATH:/usr/local/go/bin:/root/go/bin' >> ~/.bashrc

# install abigen
RUN git clone --depth 1 --branch v1.12.0 https://github.com/ethereum/go-ethereum.git && cd go-ethereum && PATH=$PATH:/usr/local/go/bin make devtools
Expand Down

0 comments on commit 26ebcb1

Please sign in to comment.