Skip to content

Commit 6d6f7d5

Browse files
Daulox92holgerd77
andauthored
Update GitHub Actions (#4105)
* 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 --------- Co-authored-by: Holger Drewes <[email protected]>
1 parent 46eb8a5 commit 6d6f7d5

24 files changed

+44
-44
lines changed

.github/workflows/block-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
# We clone the repo and submodules if triggered from work-flow dispatch
3636
- if: inputs.submodule-cache-key == 'none'
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
submodules: recursive
4040

@@ -71,4 +71,4 @@ jobs:
7171
with:
7272
token: ${{ secrets.CODECOV_TOKEN }}
7373
files: ${{ github.workspace}}/packages/block/coverage/lcov.info
74-
flags: block
74+
flags: block

.github/workflows/blockchain-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# We clone the repo and submodules if triggered from work-flow dispatch
3333
- if: inputs.submodule-cache-key == 'none'
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535

3636
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
3737
- uses: actions/cache/restore@v4
@@ -56,4 +56,4 @@ jobs:
5656
with:
5757
token: ${{ secrets.CODECOV_TOKEN }}
5858
files: ${{ env.cwd }}/coverage/lcov.info
59-
flags: blockchain
59+
flags: blockchain

.github/workflows/browser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
# We clone the repo and submodules if triggered from work-flow dispatch
3434
- if: inputs.submodule-cache-key == 'none'
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
submodules: recursive
3838

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
submodules: recursive
2525

@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848

4949
steps:
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v5
5151

5252
- uses: actions/cache/restore@v4
5353
id: dep-cache

.github/workflows/client-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
# We clone the repo and submodules if triggered from work-flow dispatch
3535
- if: inputs.submodule-cache-key == 'none'
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
- if: inputs.dep-cache-key != 'none'
3939
uses: actions/cache/restore@v4
@@ -72,7 +72,7 @@ jobs:
7272
fail-fast: false
7373
steps:
7474
- if: inputs.submodule-cache-key == 'none'
75-
uses: actions/checkout@v4
75+
uses: actions/checkout@v5
7676

7777
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
7878
- if: inputs.dep-cache-key != 'none'

.github/workflows/common-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
# We clone the repo and submodules if triggered from work-flow dispatch
3434
- if: inputs.submodule-cache-key == 'none'
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
3838
- if: inputs.dep-cache-key != 'none'
@@ -69,4 +69,4 @@ jobs:
6969
with:
7070
token: ${{ secrets.CODECOV_TOKEN }}
7171
files: ${{ env.cwd }}/coverage/lcov.info
72-
flags: util
72+
flags: util

.github/workflows/devp2p-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
# We clone the repo and submodules if triggered from work-flow dispatch
3030
- if: inputs.submodule-cache-key == 'none'
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232

3333
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
3434
- if: inputs.dep-cache-key != 'none'

.github/workflows/evm-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
# We clone the repo and submodules if triggered from work-flow dispatch
3636
- if: inputs.submodule-cache-key == 'none'
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
submodules: recursive
4040

@@ -71,4 +71,4 @@ jobs:
7171
with:
7272
token: ${{ secrets.CODECOV_TOKEN }}
7373
files: ${{ env.cwd }}/coverage/lcov.info
74-
flags: evm
74+
flags: evm

.github/workflows/examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# We clone the repo and submodules if triggered from work-flow dispatch
2626
- if: inputs.submodule-cache-key == 'none'
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
submodules: recursive
3030

@@ -47,4 +47,4 @@ jobs:
4747
run: npm ci
4848
working-directory: ${{ github.workspace }}
4949

50-
- run: npm run examples
50+
- run: npm run examples

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# We clone the repo and submodules if triggered from work-flow dispatch
2626
- if: inputs.submodule-cache-key == 'none'
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
# We restore the code/deps from cache if triggered from workflow_call (i.e. have valid cache key)
3030
- if: inputs.dep-cache-key != 'none'

0 commit comments

Comments
 (0)