Skip to content

Commit 4185df4

Browse files
authored
Merge pull request #654 from diega/github_action_update
Update GitHub Actions Artifacts to v4
2 parents 4e004c6 + df46b3d commit 4185df4

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

.github/workflows/bench-core.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
go test -short ./core -count 1 -p 1 -timeout 60m -run NONE -bench=. -v |& tee core-geth.txt
2626
27-
- uses: actions/upload-artifact@v2
27+
- uses: actions/upload-artifact@v4
2828
with:
2929
name: core-geth
3030
path: ./core-geth.txt
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
go test -short ./core -count 1 -p 1 -timeout 60m -run NONE -bench=. -v |& tee go-ethereum.txt
5353
54-
- uses: actions/upload-artifact@v2
54+
- uses: actions/upload-artifact@v4
5555
with:
5656
name: go-ethereum
5757
path: ./go-ethereum.txt
@@ -75,12 +75,13 @@ jobs:
7575
run: |
7676
go install golang.org/x/perf/cmd/benchstat@latest
7777
78-
- uses: actions/download-artifact@v2
78+
- uses: actions/download-artifact@v4
7979
name: Get go-ethereum artifact
8080
with:
8181
name: go-ethereum
8282

83-
- uses: actions/download-artifact@v2
83+
- uses: actions/download-artifact@v4
84+
- uses: actions/download-artifact@v4
8485
name: Get core-geth artifact
8586
with:
8687
name: core-geth

.github/workflows/bench-trie.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
go test -short ./trie -count 1 -p 1 -timeout 60m -run NONE -bench=. -v |& tee core-geth.txt
2626
27-
- uses: actions/upload-artifact@v2
27+
- uses: actions/upload-artifact@v4
2828
with:
2929
name: core-geth
3030
path: ./core-geth.txt
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
go test -short ./trie -count 1 -p 1 -timeout 60m -run NONE -bench=. -v |& tee go-ethereum.txt
5353
54-
- uses: actions/upload-artifact@v2
54+
- uses: actions/upload-artifact@v4
5555
with:
5656
name: go-ethereum
5757
path: ./go-ethereum.txt
@@ -75,12 +75,12 @@ jobs:
7575
run: |
7676
go install golang.org/x/perf/cmd/benchstat@latest
7777
78-
- uses: actions/download-artifact@v2
78+
- uses: actions/download-artifact@v4
7979
name: Get go-ethereum artifact
8080
with:
8181
name: go-ethereum
8282

83-
- uses: actions/download-artifact@v2
83+
- uses: actions/download-artifact@v4
8484
name: Get core-geth artifact
8585
with:
8686
name: core-geth

.github/workflows/bench-vm.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: |
2727
go test -short ./tests -count 1 -p 1 -timeout 60m -run NONE -bench=VM -v |& tee core-geth.txt
2828
29-
- uses: actions/upload-artifact@v2
29+
- uses: actions/upload-artifact@v4
3030
with:
3131
name: core-geth
3232
path: ./core-geth.txt
@@ -57,7 +57,7 @@ jobs:
5757
git checkout $GITHUB_SHA -- tests/vm_bench_test.go
5858
go test -short ./tests -count 1 -p 1 -timeout 60m -run NONE -bench=VM -v |& tee go-ethereum.txt
5959
60-
- uses: actions/upload-artifact@v2
60+
- uses: actions/upload-artifact@v4
6161
with:
6262
name: go-ethereum
6363
path: ./go-ethereum.txt
@@ -81,12 +81,12 @@ jobs:
8181
run: |
8282
go install golang.org/x/perf/cmd/benchstat@latest
8383
84-
- uses: actions/download-artifact@v2
84+
- uses: actions/download-artifact@v4
8585
name: Get go-ethereum artifact
8686
with:
8787
name: go-ethereum
8888

89-
- uses: actions/download-artifact@v2
89+
- uses: actions/download-artifact@v4
9090
name: Get core-geth artifact
9191
with:
9292
name: core-geth

0 commit comments

Comments
 (0)