Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
touch "/tmp/digests/${digest#sha256:}"

- name: Upload digest
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: node-digests-${{ env.PLATFORM_PAIR }}
path: /tmp/digests/*
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
touch "/tmp/digests/${digest#sha256:}"

- name: Upload digest
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: frontend-digests-${{ env.PLATFORM_PAIR }}
path: /tmp/digests/*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: make docs-build

- name: Upload build artifacts for testing
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: docs-build-test
path: website/build
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
zip -r "mina-docs-${{ steps.version.outputs.version }}.zip" website/build

- name: Upload versioned documentation as release asset
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: versioned-docs-${{ steps.version.outputs.version }}
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:
run: ./.github/scripts/test-misc-mina-key-pair.sh

- name: Upload binaries
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: bin-${{ github.sha }}
path: target/release/mina
Expand Down Expand Up @@ -362,7 +362,7 @@ jobs:
run: make build-tests

- name: Upload tests
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: tests-${{ github.sha }}
path: target/release/tests
Expand Down Expand Up @@ -391,7 +391,7 @@ jobs:
run: make build-tests-webrtc

- name: Upload tests
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: tests-webrtc-${{ github.sha }}
path: target/release/tests
Expand Down Expand Up @@ -633,15 +633,15 @@ jobs:
}

- name: Upload logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: bootstrap-logs-${{ github.sha }}
path: ${{ env.MINA_HOME }}/logs/*
retention-days: 7
if: ${{ failure() }}

- name: Upload record
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: bootstrap-record-${{ github.sha }}
path: ${{ env.MINA_HOME }}/recorder/*
Expand Down
Loading