Skip to content

Commit 93e372c

Browse files
Daulox92holgerd77
andauthored
Update GitHub Actions setup-node to v5 (#4128)
* Update block-build.yml * Update blockchain-build.yml * Update browser.yml * Update build.yml * Update client-build.yml * Update common-build.yml * Update devp2p-build.yml * Update evm-build.yml * Update examples.yml * Update lint.yml * Update lockfile.yml * Update mpt-build.yml * Update noCompile.yml * Update node-versions.yml * Update rlp-ethash-genesis-wallet-build.yml * Update spellcheck.yml * Update statemanager-build.yml * Update tx-build.yml * Update typecheck.yml * Update util-build.yml * Update verkle-build.yml * Update vm-build.yml * Update vm-nightly-test.yml * Update vm-pr.yml * Update binarytree-build.yml * Update block-build.yml * Update blockchain-build.yml * Update browser.yml * Update build.yml * Update client-build.yml * Update common-build.yml * Update devp2p-build.yml * Update docker-image.yml * Update evm-build.yml * Update examples.yml * Update lint.yml * Update lockfile.yml * Update noCompile.yml * Update mpt-build.yml * Update node-versions.yml * Update rlp-ethash-genesis-wallet-build.yml * Update spellcheck.yml * Update statemanager-build.yml * Update tx-build.yml * Update typecheck.yml * Update util-build.yml * Update verkle-build.yml * Update vm-build.yml * Update vm-nightly-test.yml * Update vm-pr.yml --------- Co-authored-by: Holger Drewes <[email protected]>
1 parent 9ae6d2d commit 93e372c

26 files changed

+38
-38
lines changed

.github/workflows/binarytree-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
key: ${{ inputs.dep-cache-key }}
4444

4545
- name: Use Node.js 20
46-
uses: actions/setup-node@v4
46+
uses: actions/setup-node@v5
4747
with:
4848
node-version: 20
4949
cache: 'npm'

.github/workflows/block-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
key: ${{ inputs.dep-cache-key }}
4848

4949
- name: Use Node.js 20
50-
uses: actions/setup-node@v4
50+
uses: actions/setup-node@v5
5151
with:
5252
node-version: 20
5353
cache: 'npm'

.github/workflows/blockchain-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
key: ${{ inputs.dep-cache-key }}
4242

4343
- name: Use Node.js 20
44-
uses: actions/setup-node@v4
44+
uses: actions/setup-node@v5
4545
with:
4646
node-version: 20
4747
cache: 'npm'

.github/workflows/browser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
key: ${{ inputs.dep-cache-key }}
4747

4848
- name: Use Node.js 20
49-
uses: actions/setup-node@v4
49+
uses: actions/setup-node@v5
5050
with:
5151
node-version: 20
5252
cache: 'npm'

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
key: npm-${{ hashFiles('package-lock.json') }}
5757

5858
- name: Use Node.js 20
59-
uses: actions/setup-node@v4
59+
uses: actions/setup-node@v5
6060
with:
6161
node-version: 20
6262
cache: 'npm'

.github/workflows/client-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
key: ${{ inputs.dep-cache-key }}
4545

4646
- name: Use Node.js 20
47-
uses: actions/setup-node@v4
47+
uses: actions/setup-node@v5
4848
with:
4949
node-version: 20
5050
cache: 'npm'
@@ -84,7 +84,7 @@ jobs:
8484
key: ${{ inputs.dep-cache-key }}
8585

8686
- name: Use Node.js 20
87-
uses: actions/setup-node@v4
87+
uses: actions/setup-node@v5
8888
with:
8989
node-version: 20
9090
cache: 'npm'

.github/workflows/common-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
key: ${{ inputs.dep-cache-key }}
4444

4545
- name: Use Node.js 20
46-
uses: actions/setup-node@v4
46+
uses: actions/setup-node@v5
4747
with:
4848
node-version: 20
4949
cache: 'npm'

.github/workflows/devp2p-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
key: ${{ inputs.dep-cache-key }}
4141

4242
- name: Use Node.js 20
43-
uses: actions/setup-node@v4
43+
uses: actions/setup-node@v5
4444
with:
4545
node-version: 20
4646
cache: 'npm'

.github/workflows/docker-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v3
3232

3333
- name: Use Node.js ${{ matrix.node-version }}
34-
uses: actions/setup-node@v3
34+
uses: actions/setup-node@v5
3535
with:
3636
node-version: ${{ matrix.node-version }}
3737
cache: 'npm'
@@ -46,4 +46,4 @@ jobs:
4646
context: .
4747
push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
4848
tags: ghcr.io/${{ github.repository_owner }}/ethereumjs-monorepo:latest
49-
provenance: false
49+
provenance: false

.github/workflows/evm-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
key: ${{ inputs.dep-cache-key }}
4848

4949
- name: Use Node.js 20
50-
uses: actions/setup-node@v4
50+
uses: actions/setup-node@v5
5151
with:
5252
node-version: 20
5353
cache: 'npm'

0 commit comments

Comments
 (0)