Skip to content
Closed
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
14 changes: 7 additions & 7 deletions .github/workflows/e2e-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:

- name: Upload demo logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: e2e-demo-logs-ubuntu
path: |
Expand All @@ -122,7 +122,7 @@ jobs:

- name: Upload metrics artifact
if: always() && (github.event.inputs.collect_metrics == 'true' || github.event_name != 'workflow_dispatch')
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: e2e-metrics-ubuntu
path: e2e-metrics.json
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:

- name: Upload demo logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: e2e-demo-logs-windows
path: |
Expand All @@ -192,7 +192,7 @@ jobs:

- name: Upload metrics artifact
if: always() && (github.event.inputs.collect_metrics == 'true' || github.event_name != 'workflow_dispatch')
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: e2e-metrics-windows
path: e2e-metrics.json
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:

- name: Upload demo logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: e2e-demo-logs-macos
path: |
Expand All @@ -263,7 +263,7 @@ jobs:

- name: Upload metrics artifact
if: always() && (github.event.inputs.collect_metrics == 'true' || github.event_name != 'workflow_dispatch')
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: e2e-metrics-macos
path: e2e-metrics.json
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
done

- name: Upload combined metrics
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: e2e-metrics-combined
path: metrics/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
cd ../../..

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: orbit-${{ matrix.target }}
path: orbit-${{ github.ref_name }}-${{ matrix.target }}.*
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
tar czf orbit-server-${{ github.ref_name }}.tar.gz -C orbit-server-dist .

- name: Upload orbit-server artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: orbit-server
path: orbit-server-${{ github.ref_name }}.tar.gz
Loading