Skip to content

Commit 8eb4f5a

Browse files
Merge branch 'microsoft:main' into bf16_conv
2 parents 6cbbd25 + 07724d5 commit 8eb4f5a

File tree

99 files changed

+848
-299
lines changed

Some content is hidden

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

99 files changed

+848
-299
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
@@ -146,7 +146,7 @@ jobs:
146146
147147
- name: Upload WASM artifacts
148148
if: ${{ inputs.skip_publish != true }}
149-
uses: actions/upload-artifact@v5
149+
uses: actions/upload-artifact@v6
150150
with:
151151
name: ${{ inputs.build_config }}_wasm
152152
path: ${{ github.workspace }}/artifacts/wasm
@@ -175,7 +175,7 @@ jobs:
175175

176176
- name: Publish test results
177177
if: ${{ always() && inputs.build_config == 'Debug' }}
178-
uses: actions/upload-artifact@v5
178+
uses: actions/upload-artifact@v6
179179
with:
180180
name: test-results
181181
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
@@ -65,7 +65,7 @@ jobs:
6565

6666
# --- Download Build Artifact to Runner Temp Directory ---
6767
- name: Download Build Artifact
68-
uses: actions/download-artifact@v6
68+
uses: actions/download-artifact@v7
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/linux_minimal_build.yml

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

5555
- name: Upload Test Data Artifact
56-
uses: actions/upload-artifact@v5
56+
uses: actions/upload-artifact@v6
5757
with:
5858
name: test_data
5959
path: ${{ runner.temp }}/minimal_build_test_data/
@@ -552,7 +552,7 @@ jobs:
552552
with:
553553
node-version: 20
554554
- name: Download Test Data Artifact
555-
uses: actions/download-artifact@v6
555+
uses: actions/download-artifact@v7
556556
with:
557557
name: test_data
558558
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
@@ -67,7 +67,7 @@ jobs:
6767

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

.github/workflows/macos-ci-build-and-test-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
xcode_version: ${{ env.xcode_version }}
9494
use_cache: true
9595

96-
- uses: actions/cache@v4
96+
- uses: actions/cache@v5
9797
id: onnx-node-tests-cache
9898
with:
9999
path: ${{ github.workspace }}/js/test/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
rm -rf site/docs/api/c
5050
mv build/doxygen/html _site/docs/api/c
5151
- name: Upload new site
52-
uses: actions/upload-artifact@v5
52+
uses: actions/upload-artifact@v6
5353
with:
5454
name: onnxruntime-c-apidocs
5555
path: _site

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
mkdir -p _site/docs/api
4848
mv java/build/docs/javadoc _site/docs/api/java
4949
- name: Upload new site
50-
uses: actions/upload-artifact@v5
50+
uses: actions/upload-artifact@v6
5151
with:
5252
name: onnxruntime-java-apidocs
5353
path: _site

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
mkdir -p _site/docs/api
4848
mv js/common/docs _site/docs/api/js
4949
- name: Upload docs artifact
50-
uses: actions/upload-artifact@v5
50+
uses: actions/upload-artifact@v6
5151
with:
5252
name: onnxruntime-node-apidocs
5353
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@v5
55+
uses: actions/upload-artifact@v6
5656
with:
5757
name: onnxruntime-objectivec-apidocs
5858
path: ./_site

0 commit comments

Comments
 (0)