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
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Create Release Job
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: dist-main
path: dist
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/cross-platform-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,21 +148,21 @@ jobs:
# Download artifacts for wheel installation
- name: Download LFX package artifact
if: steps.install-method.outputs.method == 'wheel' && inputs.lfx-artifact-name != ''
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.lfx-artifact-name }}
path: ./lfx-dist

- name: Download base package artifact
if: steps.install-method.outputs.method == 'wheel'
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.base-artifact-name || needs.build-if-needed.outputs.base-artifact-name || 'adhoc-dist-base' }}
path: ./base-dist

- name: Download main package artifact
if: steps.install-method.outputs.method == 'wheel'
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.main-artifact-name || needs.build-if-needed.outputs.main-artifact-name || 'adhoc-dist-main' }}
path: ./main-dist
Expand Down Expand Up @@ -436,21 +436,21 @@ jobs:
# Download artifacts for wheel installation
- name: Download LFX package artifact
if: steps.install-method.outputs.method == 'wheel' && inputs.lfx-artifact-name != ''
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.lfx-artifact-name }}
path: ./lfx-dist

- name: Download base package artifact
if: steps.install-method.outputs.method == 'wheel'
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.base-artifact-name || needs.build-if-needed.outputs.base-artifact-name || 'adhoc-dist-base' }}
path: ./base-dist

- name: Download main package artifact
if: steps.install-method.outputs.method == 'wheel'
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.main-artifact-name || needs.build-if-needed.outputs.main-artifact-name || 'adhoc-dist-main' }}
path: ./main-dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-lfx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ jobs:
uses: actions/checkout@v5

- name: Download artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: lfx-dist
path: dist/
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download base artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist-base
path: src/backend/base/dist
Expand All @@ -325,7 +325,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download main artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist-main
path: dist
Expand Down Expand Up @@ -401,7 +401,7 @@ jobs:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Download LFX artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist-lfx
path: dist-lfx
Expand All @@ -422,7 +422,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download LFX artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist-lfx
path: src/lfx/dist
Expand Down Expand Up @@ -500,7 +500,7 @@ jobs:
needs.build-main.result == 'success' &&
needs.publish-main.result == 'success'
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
name: dist-main
path: dist
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ jobs:
ref: ${{ inputs.nightly_tag_main }}
persist-credentials: true
- name: Download LFX artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist-nightly-lfx
path: src/lfx/dist
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
ref: ${{ inputs.nightly_tag_main }}
persist-credentials: true
- name: Download base artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist-nightly-base
path: src/backend/base/dist
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:
ref: ${{ inputs.nightly_tag_main }}
persist-credentials: true
- name: Download main artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist-nightly-main
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typescript_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ jobs:
- name: Download blob reports from GitHub Actions Artifacts

if: ${{ steps.should_merge_reports.outputs.should_merge_reports == 'true' }}
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
path: all-blob-reports
pattern: blob-report-*
Expand Down
Loading