Skip to content

Commit 54380dd

Browse files
Bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b82643f commit 54380dd

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.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@v5
61+
uses: actions/upload-artifact@v6
6262
with:
6363
name: node-digests-${{ env.PLATFORM_PAIR }}
6464
path: /tmp/digests/*
@@ -125,7 +125,7 @@ jobs:
125125
touch "/tmp/digests/${digest#sha256:}"
126126
127127
- name: Upload digest
128-
uses: actions/upload-artifact@v5
128+
uses: actions/upload-artifact@v6
129129
with:
130130
name: frontend-digests-${{ env.PLATFORM_PAIR }}
131131
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@v5
83+
uses: actions/upload-artifact@v6
8484
with:
8585
name: docs-build-test
8686
path: website/build
@@ -207,7 +207,7 @@ jobs:
207207
zip -r "mina-docs-${{ steps.version.outputs.version }}.zip" website/build
208208
209209
- name: Upload versioned documentation as release asset
210-
uses: actions/upload-artifact@v5
210+
uses: actions/upload-artifact@v6
211211
with:
212212
name: versioned-docs-${{ steps.version.outputs.version }}
213213
path: |

.github/workflows/tests.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ jobs:
222222
run: ./.github/scripts/test-misc-mina-key-pair.sh
223223

224224
- name: Upload binaries
225-
uses: actions/upload-artifact@v5
225+
uses: actions/upload-artifact@v6
226226
with:
227227
name: bin-${{ github.sha }}
228228
path: target/release/mina
@@ -362,7 +362,7 @@ jobs:
362362
run: make build-tests
363363

364364
- name: Upload tests
365-
uses: actions/upload-artifact@v5
365+
uses: actions/upload-artifact@v6
366366
with:
367367
name: tests-${{ github.sha }}
368368
path: target/release/tests
@@ -391,7 +391,7 @@ jobs:
391391
run: make build-tests-webrtc
392392

393393
- name: Upload tests
394-
uses: actions/upload-artifact@v5
394+
uses: actions/upload-artifact@v6
395395
with:
396396
name: tests-webrtc-${{ github.sha }}
397397
path: target/release/tests
@@ -633,15 +633,15 @@ jobs:
633633
}
634634
635635
- name: Upload logs
636-
uses: actions/upload-artifact@v5
636+
uses: actions/upload-artifact@v6
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@v5
644+
uses: actions/upload-artifact@v6
645645
with:
646646
name: bootstrap-record-${{ github.sha }}
647647
path: ${{ env.MINA_HOME }}/recorder/*

0 commit comments

Comments
 (0)