Skip to content
This repository was archived by the owner on Jul 1, 2025. It is now read-only.

Commit 69e4a9d

Browse files
committed
fixed ci pipeline
1 parent 2263f74 commit 69e4a9d

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
types: [opened, reopened, synchronize, ready_for_review]
77
push:
88
branches: [main]
9+
workflow_dispatch:
910

1011
jobs:
1112
ci:
@@ -16,18 +17,16 @@ jobs:
1617
ANVIL_FORK_URL: ${{ secrets.MAINNET_RPC_URL }}
1718
steps:
1819
- name: ⬇️ Checkout repo
19-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2021

2122
- name: 📦 Install pnpm
22-
uses: pnpm/action-setup@v2.4.0
23-
with:
24-
version: 8.15
23+
uses: pnpm/action-setup@v4
2524

26-
- name: 📦 Setup Node 18
27-
uses: actions/setup-node@v3
25+
- name: 📦 Setup Node 22
26+
uses: actions/setup-node@v4
2827
with:
2928
cache: 'pnpm'
30-
node-version: 18
29+
node-version: 22
3130

3231
- name: 💾 Cache node_modules
3332
uses: actions/cache@v3
@@ -45,7 +44,7 @@ jobs:
4544
run: pnpm i
4645

4746
- name: 💾 Cache Anvil
48-
uses: 'actions/cache@v3'
47+
uses: 'actions/cache@v4'
4948
with:
5049
path: ~/.foundry/cache/rpc/**/${{ env.ANVIL_BLOCK_NUMBER }}
5150
key: foundry-anvil-${{ env.ANVIL_BLOCK_NUMBER }}

0 commit comments

Comments
 (0)