Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,13 +212,13 @@ jobs:
working-directory: src/frontend

- name: Download stub_api artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: stub_api
path: src/backend/target/release

- name: Download frontend-dist artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: frontend-dist
path: src/frontend/dist
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
working-directory: src/frontend

- name: Download all blob reports
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
path: src/frontend/all-blob-reports
pattern: blob-report-*
Expand Down Expand Up @@ -357,7 +357,7 @@ jobs:
- uses: actions/checkout@v6

- name: Download backend binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: backend-bin
path: src/backend
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:

- name: Download artifact
if: ${{ matrix.artifact_name != '' }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: ${{ matrix.artifact_name }}
path: ${{ matrix.context }}/${{ matrix.download_path }}
Expand Down Expand Up @@ -114,13 +114,13 @@ jobs:
fetch-depth: 0

- name: Download backend artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: backend-bin
path: release-assets/backend

- name: Download frontend artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: frontend-dist
path: release-assets/frontend
Expand Down
Loading