Skip to content

Commit bdd0af4

Browse files
build(deps): bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent b027e15 commit bdd0af4

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/docker-heartbeats-processor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
touch "/tmp/digests/${digest#sha256:}"
5757
5858
- name: Upload digest
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v5
6060
with:
6161
name: heartbeat-processor-digests-${{ env.PLATFORM_PAIR }}
6262
path: /tmp/digests/*

.github/workflows/docker.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
touch "/tmp/digests/${digest#sha256:}"
5959
6060
- name: Upload digest
61-
uses: actions/upload-artifact@v4
61+
uses: actions/upload-artifact@v5
6262
with:
6363
name: node-digests-${{ env.PLATFORM_PAIR }}
6464
path: /tmp/digests/*
@@ -119,7 +119,7 @@ jobs:
119119
touch "/tmp/digests/${digest#sha256:}"
120120
121121
- name: Upload digest
122-
uses: actions/upload-artifact@v4
122+
uses: actions/upload-artifact@v5
123123
with:
124124
name: frontend-digests-${{ env.PLATFORM_PAIR }}
125125
path: /tmp/digests/*

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
run: make docs-build
8181

8282
- name: Upload build artifacts for testing
83-
uses: actions/upload-artifact@v4
83+
uses: actions/upload-artifact@v5
8484
with:
8585
name: docs-build-test
8686
path: website/build
@@ -201,7 +201,7 @@ jobs:
201201
zip -r "mina-docs-${{ steps.version.outputs.version }}.zip" website/build
202202
203203
- name: Upload versioned documentation as release asset
204-
uses: actions/upload-artifact@v4
204+
uses: actions/upload-artifact@v5
205205
with:
206206
name: versioned-docs-${{ steps.version.outputs.version }}
207207
path: |

.github/workflows/tests.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ jobs:
244244
run: ./.github/scripts/test-ocaml-specific-endpoints.sh
245245

246246
- name: Upload binaries
247-
uses: actions/upload-artifact@v4
247+
uses: actions/upload-artifact@v5
248248
with:
249249
name: bin-${{ github.sha }}
250250
path: target/release/mina
@@ -323,7 +323,7 @@ jobs:
323323
run: make build-tests
324324

325325
- name: Upload tests
326-
uses: actions/upload-artifact@v4
326+
uses: actions/upload-artifact@v5
327327
with:
328328
name: tests-${{ github.sha }}
329329
path: target/release/tests
@@ -354,7 +354,7 @@ jobs:
354354
run: make build-tests-webrtc
355355

356356
- name: Upload tests
357-
uses: actions/upload-artifact@v4
357+
uses: actions/upload-artifact@v5
358358
with:
359359
name: tests-webrtc-${{ github.sha }}
360360
path: target/release/tests
@@ -444,7 +444,7 @@ jobs:
444444
./${{ matrix.test }} --test-threads=1
445445
446446
- name: Archive network debugger database
447-
uses: actions/upload-artifact@v4
447+
uses: actions/upload-artifact@v5
448448
with:
449449
name: network-debugger-${{ matrix.test }}-${{ github.sha }}
450450
path: /tmp/db
@@ -531,7 +531,7 @@ jobs:
531531
./${{ matrix.test }} --test-threads=1
532532
533533
- name: Archive network debugger database
534-
uses: actions/upload-artifact@v4
534+
uses: actions/upload-artifact@v5
535535
with:
536536
name: network-debugger-${{ matrix.test }}-${{ github.sha }}
537537
path: /tmp/db
@@ -633,23 +633,23 @@ jobs:
633633
}
634634
635635
- name: Upload logs
636-
uses: actions/upload-artifact@v4
636+
uses: actions/upload-artifact@v5
637637
with:
638638
name: bootstrap-logs-${{ github.sha }}
639639
path: ${{ env.MINA_HOME }}/logs/*
640640
retention-days: 7
641641
if: ${{ failure() }}
642642

643643
- name: Upload record
644-
uses: actions/upload-artifact@v4
644+
uses: actions/upload-artifact@v5
645645
with:
646646
name: bootstrap-record-${{ github.sha }}
647647
path: ${{ env.MINA_HOME }}/recorder/*
648648
retention-days: 7
649649
if: ${{ failure() }}
650650

651651
- name: Archive network debugger database
652-
uses: actions/upload-artifact@v4
652+
uses: actions/upload-artifact@v5
653653
with:
654654
name: network-debugger-test-bootstrap-${{ github.sha }}
655655
path: /tmp/db

0 commit comments

Comments
 (0)