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
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
steps:
- name: Download backend from latest build
id: download
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yaml
branch: production
Expand Down Expand Up @@ -357,7 +357,7 @@ jobs:
steps:
- name: Download control-station from latest build
id: download
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yaml
branch: production
Expand Down Expand Up @@ -436,7 +436,7 @@ jobs:
steps:
- name: Download ethernet-view from latest build
id: download
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yaml
branch: production
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
# Download ONLY the appropriate backend for this platform
- name: Download Linux backend
if: runner.os == 'Linux'
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yaml
branch: production
Expand All @@ -75,7 +75,7 @@ jobs:

- name: Download Windows backend
if: runner.os == 'Windows'
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yaml
branch: production
Expand All @@ -86,7 +86,7 @@ jobs:
# macOS needs both Intel and ARM64 for universal support
- name: Download macOS Intel backend
if: runner.os == 'macOS'
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yaml
branch: production
Expand All @@ -96,7 +96,7 @@ jobs:

- name: Download macOS ARM64 backend
if: runner.os == 'macOS'
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yaml
branch: production
Expand All @@ -106,7 +106,7 @@ jobs:

# Download frontend builds from latest build
- name: Download control-station
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yaml
branch: production
Expand All @@ -115,7 +115,7 @@ jobs:
path: electron-app/renderer/control-station

- name: Download ethernet-view
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yaml
branch: production
Expand Down