Skip to content

Commit 323cfeb

Browse files
authored
Merge pull request #843 from intel/sync_msft_03112025
Sync with Microsoft ONNX Runtime - 03/11/2025
2 parents 20de366 + 81772e9 commit 323cfeb

File tree

251 files changed

+7863
-3829
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

251 files changed

+7863
-3829
lines changed

.github/workflows/linux-wasm-ci-build-and-test-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
143143
- name: Upload WASM artifacts
144144
if: ${{ inputs.skip_publish != true }}
145-
uses: actions/upload-artifact@v4
145+
uses: actions/upload-artifact@v5
146146
with:
147147
name: ${{ inputs.build_config }}_wasm
148148
path: ${{ github.workspace }}/artifacts/wasm
@@ -171,7 +171,7 @@ jobs:
171171

172172
- name: Publish test results
173173
if: ${{ always() && inputs.build_config == 'Debug' }}
174-
uses: actions/upload-artifact@v4
174+
uses: actions/upload-artifact@v5
175175
with:
176176
name: test-results
177177
path: ${{ github.workspace }}/build/**/*.results.xml

.github/workflows/linux_cuda_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363

6464
# --- Download Build Artifact to Runner Temp Directory ---
6565
- name: Download Build Artifact
66-
uses: actions/download-artifact@v5
66+
uses: actions/download-artifact@v6
6767
with:
6868
name: build-output-x64-Release # Must match the upload name
6969
path: ${{ runner.temp }}/Release # Download contents into temp dir structure

.github/workflows/linux_minimal_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
uses: microsoft/onnxruntime-github-actions/build-and-prep-ort-files@v0.0.9
5050

5151
- name: Upload Test Data Artifact
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v5
5353
with:
5454
name: test_data
5555
path: ${{ runner.temp }}/minimal_build_test_data/
@@ -512,7 +512,7 @@ jobs:
512512
with:
513513
node-version: 20
514514
- name: Download Test Data Artifact
515-
uses: actions/download-artifact@v5
515+
uses: actions/download-artifact@v6
516516
with:
517517
name: test_data
518518
path: ${{ runner.temp }}/.test_data/

.github/workflows/linux_tensorrt_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565

6666
# --- Download Build Artifact to Runner Temp Directory ---
6767
- name: Download Build Artifact
68-
uses: actions/download-artifact@v5
68+
uses: actions/download-artifact@v6
6969
with:
7070
name: build-output-x64-Release # Must match the upload name
7171
path: ${{ runner.temp }}/Release # Download contents into temp dir structure

.github/workflows/publish-c-apidocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
rm -rf site/docs/api/c
4646
mv build/doxygen/html _site/docs/api/c
4747
- name: Upload new site
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v5
4949
with:
5050
name: onnxruntime-c-apidocs
5151
path: _site

.github/workflows/publish-csharp-apidocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
if (Test-Path $OutputDirectory) { Remove-Item -Recurse -Force $OutputDirectory }
5757
Move-Item -Path csharp\ApiDocs\csharp -Destination $OutputDirectory
5858
- name: Upload docs artifact
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v5
6060
with:
6161
name: onnxruntime-csharp-apidocs
6262
path: _site

.github/workflows/publish-java-apidocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
mkdir -p _site/docs/api
4444
mv java/build/docs/javadoc _site/docs/api/java
4545
- name: Upload new site
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v5
4747
with:
4848
name: onnxruntime-java-apidocs
4949
path: _site

.github/workflows/publish-js-apidocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
mkdir -p _site/docs/api
4444
mv js/common/docs _site/docs/api/js
4545
- name: Upload docs artifact
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v5
4747
with:
4848
name: onnxruntime-node-apidocs
4949
path: _site

.github/workflows/publish-objectivec-apidocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
shell: bash
5353

5454
- name: Upload new site
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v5
5656
with:
5757
name: onnxruntime-objectivec-apidocs
5858
path: ./_site

.github/workflows/publish-python-apidocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
mkdir -p _site/docs/api/
5151
mv build/docs/html _site/docs/api/python
5252
- name: Upload docs artifact
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v5
5454
with:
5555
name: onnxruntime-python-apidocs
5656
path: _site

0 commit comments

Comments
 (0)