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
2 changes: 1 addition & 1 deletion .github/workflows/linux_cuda_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

# --- Download Build Artifact to Runner Temp Directory ---
- name: Download Build Artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: build-output-x64-Release # Must match the upload name
path: ${{ runner.temp }}/Release # Download contents into temp dir structure
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_minimal_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ jobs:
with:
node-version: 20
- name: Download Test Data Artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: test_data
path: ${{ runner.temp }}/.test_data/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux_tensorrt_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

# --- Download Build Artifact to Runner Temp Directory ---
- name: Download Build Artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: build-output-x64-Release # Must match the upload name
path: ${{ runner.temp }}/Release # Download contents into temp dir structure
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/react_native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y ninja-build

- name: Download Android AAR artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: onnxruntime-android-full-aar
path: ${{ runner.temp }}/android-full-aar
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
uses: actions/checkout@v5

- name: Download iOS pod artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ios_pod
path: ${{ runner.temp }}/ios_pod
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:
uses: actions/checkout@v5

- name: Download iOS pod artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ios_pod
path: ${{ runner.temp }}/ios_pod
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-web-ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
node-version: "20.x"

- name: Download WebAssembly artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ inputs.build_config }}_wasm
path: ${{ github.workspace }}/artifacts_wasm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
submodules: 'none'

- name: Download build artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: build-artifacts
path: ${{ runner.temp }}\build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows_tensorrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
submodules: 'none'

- name: Download build artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: build-artifacts
path: ${{ runner.temp }}\build
Expand Down
Loading