Skip to content

Commit d250714

Browse files
authored
fix(ci): lock foundry version (#248)
now that foundry has stable releases, there is no reason to subject ourselves to the instability of the nightly releases. this PR proposes locking to the current foundry release v1.3.5, and we can manually bump it as it makes sense. as it so happens, the current nightly release seems to be changing the lint rules or something and the CI is currently failing with `main` branch code.
1 parent 39d7f4d commit d250714

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/gas.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Install Foundry
4646
uses: foundry-rs/foundry-toolchain@v1
4747
with:
48-
version: nightly
48+
version: v1.3.5
4949

5050
- name: Check gas snapshots
5151
run: forge snapshot --check

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install Foundry
3030
uses: foundry-rs/foundry-toolchain@v1
3131
with:
32-
version: nightly
32+
version: v1.3.5
3333

3434
- name: Check Forge fmt
3535
run: forge fmt --check

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Install Foundry
5151
uses: foundry-rs/foundry-toolchain@v1
5252
with:
53-
version: nightly
53+
version: v1.3.5
5454

5555
- name: Run Forge build with ${{ matrix.profile }}
5656
# We always build with 0.7.6 to ensure that the project is compatible with the oldest version

0 commit comments

Comments
 (0)