diff --git a/.github/workflows/windows_openvino.yml b/.github/workflows/windows_openvino.yml index 027f60ee15949..8ff7a7071a755 100644 --- a/.github/workflows/windows_openvino.yml +++ b/.github/workflows/windows_openvino.yml @@ -51,12 +51,12 @@ jobs: with: architecture: x64 - - name: Download OpenVINO Toolkit v2025.4.0 + - name: Download OpenVINO Toolkit v2025.4.1 env: - OpenVINOVersion: 2025.4.0 + OpenVINOVersion: 2025.4.1 shell: pwsh run: | - $Url ="https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.4/windows/openvino_toolkit_windows_2025.4.0.20398.8fdad55727d_x86_64.zip" + $Url ="https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.4.1/windows/openvino_toolkit_windows_2025.4.1.20426.82bbf0292c5_x86_64.zip" $OutputPath = "$env:RUNNER_TEMP\openvino.zip" $ExtractPath = "$env:RUNNER_TEMP\openvino-v$env:OpenVINOVersion" $TempExtractPath = "$env:RUNNER_TEMP\openvino_temp" @@ -99,7 +99,7 @@ jobs: shell: pwsh # Use $GITHUB_ENV to set the variable for subsequent steps run: | - $openVinoRootDir = Join-Path $env:RUNNER_TEMP "openvino-v2025.4.0" + $openVinoRootDir = Join-Path $env:RUNNER_TEMP "openvino-v2025.4.1" echo "OpenVINORootDir=$openVinoRootDir" >> $env:GITHUB_ENV - name: Print OpenVINORootDir after downloading OpenVINO diff --git a/tools/ci_build/github/linux/docker/inference/x86_64/python/openvino/Dockerfile b/tools/ci_build/github/linux/docker/inference/x86_64/python/openvino/Dockerfile index 1a9eef8b75ad6..2ffe21159fd1f 100644 --- a/tools/ci_build/github/linux/docker/inference/x86_64/python/openvino/Dockerfile +++ b/tools/ci_build/github/linux/docker/inference/x86_64/python/openvino/Dockerfile @@ -19,8 +19,8 @@ RUN dnf install -y --nodocs \ && dnf clean all \ && rm -rf /var/cache/dnf -ENV INTEL_OPENVINO_DIR=/opt/intel/openvino_2025.4.0 -ARG OPENVINO_PACKAGE_URL=https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.4/linux/openvino_toolkit_rhel8_2025.4.0.20398.8fdad55727d_x86_64.tgz +ENV INTEL_OPENVINO_DIR=/opt/intel/openvino_2025.4.1 +ARG OPENVINO_PACKAGE_URL=https://storage.openvinotoolkit.org/repositories/openvino/packages/2025.4.1/linux/openvino_toolkit_rhel8_2025.4.1.20426.82bbf0292c5_x86_64.tgz ARG TEMP_DIR=/tmp/openvino_installer RUN mkdir -p ${TEMP_DIR} && \