Skip to content

Commit 0ffac96

Browse files
authored
fix: bump github actions to node24 runtimes (#807)
1 parent b319a4d commit 0ffac96

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
OPTIMISM_RPC_URL: ${{ secrets.OPTIMISM_RPC_URL }}
2020
POLYGON_RPC_URL: ${{ secrets.POLYGON_RPC_URL }}
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v6
2323
with:
2424
submodules: recursive
2525

2626
- name: Setup Node
27-
uses: actions/setup-node@v3
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: '16'
3030

@@ -102,7 +102,7 @@ jobs:
102102
# forge coverage --report summary --report lcov
103103

104104
# - name: Upload the coverage report to Coveralls
105-
# uses: coverallsapp/github-action@master
105+
# uses: coverallsapp/github-action@v2
106106
# with:
107107
# github-token: ${{ secrets.GITHUB_TOKEN }}
108108
# base-path: ./contracts/erc20/
@@ -125,7 +125,7 @@ jobs:
125125
forge coverage --report summary --report lcov
126126
127127
- name: Upload the coverage report to Coveralls
128-
uses: coverallsapp/github-action@master
128+
uses: coverallsapp/github-action@v2
129129
with:
130130
github-token: ${{ secrets.GITHUB_TOKEN }}
131131
base-path: ./contracts/zero-ex/
@@ -156,7 +156,7 @@ jobs:
156156
# forge coverage --report lcov
157157

158158
# - name: Upload the coverage report to Coveralls
159-
# uses: coverallsapp/github-action@master
159+
# uses: coverallsapp/github-action@v2
160160
# with:
161161
# github-token: ${{ secrets.GITHUB_TOKEN }}
162162
# base-path: ./contracts/governance/

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
uses: foundry-rs/foundry-toolchain@v1
2929
with:
3030
version: nightly
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v6
3232
with:
3333
ref: ${{ github.ref }}
3434
fetch-depth: 0
35-
- uses: actions/setup-node@v1
35+
- uses: actions/setup-node@v6
3636
with:
3737
node-version: 16
38-
- uses: actions/setup-python@v2
38+
- uses: actions/setup-python@v6
3939
- name: 'configure git'
4040
run: |
4141
git config --global user.email "github-actions@github.com"

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
stale:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/stale@v7
21+
- uses: actions/stale@v10
2222
with:
2323
ascending: true # Spend API operations budget on older, more-likely-to-get-closed issues first
2424
close-issue-message: "" # Leave no comment when closing

0 commit comments

Comments
 (0)