Skip to content

Commit

Permalink
ci: use stable foundry version
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct committed Jan 14, 2025
1 parent dae68eb commit cce92a1
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@ concurrency:
cancel-in-progress: true

env:
ARCH: "linux-x86_64"

GO_VERSION: "1.22" # https://go.dev/dl/
STRINGER_VERSION: "0.29.0" # https://pkg.go.dev/golang.org/x/tools/cmd/stringer?tab=versions
# Protoc dependencies.

PROTOC_VERSION: "29.3" # https://github.com/protocolbuffers/protobuf/releases
PROTOC_GEN_GO_VERSION: "1.36.2" # https://pkg.go.dev/google.golang.org/protobuf/cmd/protoc-gen-go?tab=versions
PROTOC_GEN_GO_GRPC_VERSION: "1.5.1" # https://pkg.go.dev/google.golang.org/grpc/cmd/protoc-gen-go-grpc?tab=versions
ARCH: "linux-x86_64"

FOUNDRY_VERSION: stable

jobs:
lint:
Expand Down Expand Up @@ -72,7 +75,7 @@ jobs:
- name: Install foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
version: ${{ env.FOUNDRY_VERSION }}
- name: Get forge version
run: forge --version
- name: Install contract dependencies
Expand Down Expand Up @@ -121,7 +124,8 @@ jobs:
go-version: ${{ env.GO_VERSION }}
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
# foundry only has nightly versions no we don't specify a version at the moment.
with:
version: ${{ env.FOUNDRY_VERSION }}
- name: Install Geth
run: |
if [ "${{ matrix.tool }}" = "geth" ]; then
Expand Down

0 comments on commit cce92a1

Please sign in to comment.