Skip to content

Commit 638b7c1

Browse files
committed
feat: upd ci
1 parent 7f5165c commit 638b7c1

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/certora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
with:
2222
submodules: recursive
2323

.github/workflows/foundry-gas-diff.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
compare_gas_reports:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
submodules: recursive
2323

2424
- name: Install Foundry
2525
uses: onbjerg/foundry-toolchain@v1
2626
with:
27-
version: nightly
27+
version: stable
2828

2929
# Add any step generating a gas report to a temporary file named gasreport.ansi
3030
# For example:
@@ -38,7 +38,7 @@ jobs:
3838
FOUNDRY_FUZZ_SEED: 0x${{ github.event.pull_request.base.sha || github.sha }}
3939

4040
- name: Compare gas reports
41-
uses: Rubilmax/foundry-gas-diff@v3.11
41+
uses: Rubilmax/foundry-gas-diff@v3.21
4242
with:
4343
sortCriteria: avg,max # optionnally sort diff rows by criteria
4444
sortOrders: desc,asc # and directions
@@ -51,4 +51,4 @@ jobs:
5151
with:
5252
# delete the comment in case changes no longer impact gas costs
5353
delete: ${{ !steps.gas_diff.outputs.markdown }}
54-
message: ${{ steps.gas_diff.outputs.markdown }}
54+
message: ${{ steps.gas_diff.outputs.markdown }}

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ jobs:
66
tests:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010

1111
- name: Install Foundry
1212
uses: onbjerg/foundry-toolchain@v1
1313
with:
14-
version: nightly
14+
version: stable
1515

1616
- name: Install dependencies
1717
run: forge install
@@ -23,4 +23,4 @@ jobs:
2323
env:
2424
POLYGON_RPC_URL: ${{ secrets.POLYGON_RPC_URL }}
2525
AVALANCHE_RPC_URL: ${{ secrets.AVALANCHE_RPC_URL }}
26-
run: forge test -vv
26+
run: forge test -vvv

0 commit comments

Comments
 (0)