@@ -73,15 +73,15 @@ jobs:
73
73
id-token : write
74
74
steps :
75
75
- name : Checkout code
76
- uses : actions/checkout@v4
76
+ uses : actions/checkout@v5
77
77
78
78
- name : Set up Python ${{ inputs.python_version }}
79
79
uses : actions/setup-python@v5
80
80
with :
81
81
python-version : ${{ inputs.python_version }}
82
82
83
83
- name : Build Docker Image (${{ inputs.architecture }} / ${{ inputs.build_config }})
84
- uses :
microsoft/onnxruntime-github-actions/[email protected] .5
84
+ uses :
microsoft/onnxruntime-github-actions/[email protected] .7
85
85
id : build_docker_image_step
86
86
with :
87
87
dockerfile : ${{ github.workspace }}/${{ inputs.dockerfile_path }}
@@ -101,7 +101,7 @@ jobs:
101
101
# ------------- Update Step (CMake Generation) -------------
102
102
- name : Generate Build Files (CMake) (${{ inputs.architecture }} / ${{ inputs.build_config }})
103
103
id : update_step
104
- uses :
microsoft/onnxruntime-github-actions/[email protected] .5
104
+ uses :
microsoft/onnxruntime-github-actions/[email protected] .7
105
105
with :
106
106
docker_image : ${{ steps.build_docker_image_step.outputs.full-image-name }}
107
107
build_config : ${{ inputs.build_config }}
@@ -113,7 +113,7 @@ jobs:
113
113
# ------------- Build Step (Compilation) -------------
114
114
- name : Build ONNX Runtime (${{ inputs.architecture }} / ${{ inputs.build_config }})
115
115
id : build_step
116
- uses :
microsoft/onnxruntime-github-actions/[email protected] .5
116
+ uses :
microsoft/onnxruntime-github-actions/[email protected] .7
117
117
with :
118
118
docker_image : ${{ steps.build_docker_image_step.outputs.full-image-name }}
119
119
build_config : ${{ inputs.build_config }}
@@ -126,7 +126,7 @@ jobs:
126
126
- name : Test ONNX Runtime (${{ inputs.architecture }} / ${{ inputs.build_config }})
127
127
id : test_step
128
128
if : inputs.run_tests == true
129
- uses :
microsoft/onnxruntime-github-actions/[email protected] .5
129
+ uses :
microsoft/onnxruntime-github-actions/[email protected] .7
130
130
with :
131
131
docker_image : ${{ steps.build_docker_image_step.outputs.full-image-name }}
132
132
build_config : ${{ inputs.build_config }}
0 commit comments