Skip to content

Commit 327e3b9

Browse files
Bump actions/download-artifact from 4.1.7 to 4.1.8 (openvinotoolkit#25422)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4.1.7 to 4.1.8. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/download-artifact/releases">actions/download-artifact's releases</a>.</em></p> <blockquote> <h2>v4.1.8</h2> <h2>What's Changed</h2> <ul> <li>Update <code>@​actions/artifact</code> version, bump dependencies by <a href="https://github.com/robherley"><code>@​robherley</code></a> in <a href="https://redirect.github.com/actions/download-artifact/pull/341">actions/download-artifact#341</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/download-artifact/compare/v4...v4.1.8">https://github.com/actions/download-artifact/compare/v4...v4.1.8</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/download-artifact/commit/fa0a91b85d4f404e444e00e005971372dc801d16"><code>fa0a91b</code></a> Merge pull request <a href="https://redirect.github.com/actions/download-artifact/issues/341">#341</a> from actions/robherley/bump-pkgs</li> <li><a href="https://github.com/actions/download-artifact/commit/b54d0883e196647f43ce531a3fc13b246cf908b6"><code>b54d088</code></a> Update <code>@​actions/artifact</code> version, bump dependencies</li> <li>See full diff in <a href="https://github.com/actions/download-artifact/compare/65a9edc5881444af0b9093a5e628f2fe47ea3b2e...fa0a91b85d4f404e444e00e005971372dc801d16">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/download-artifact&package-manager=github_actions&previous-version=4.1.7&new-version=4.1.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent db913ce commit 327e3b9

19 files changed

+44
-44
lines changed

.github/workflows/fedora.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ jobs:
234234

235235
steps:
236236
- name: Download OpenVINO RPM packages
237-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
237+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
238238
with:
239239
name: openvino_rpm_packages
240240
path: ${{ env.RPM_PACKAGES_DIR }}

.github/workflows/job_cpu_functional_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
PARALLEL_TEST_CACHE: ${{ github.workspace }}/install/tests/test_cache.lst
3434
steps:
3535
- name: Download OpenVINO package
36-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
36+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
3737
with:
3838
name: openvino_package
3939
path: ${{ env.INSTALL_DIR }}
4040

4141
- name: Download OpenVINO tests package
42-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
42+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4343
with:
4444
name: openvino_tests
4545
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/job_cxx_unit_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
INSTALL_TEST_DIR: ${{ github.workspace }}/install/tests
3636
steps:
3737
- name: Download OpenVINO package
38-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
38+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
3939
with:
4040
name: openvino_package
4141
path: ${{ env.INSTALL_DIR }}
4242

4343
- name: Download OpenVINO tests package
44-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
44+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4545
with:
4646
name: openvino_tests
4747
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/job_debian_packages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: echo 'Acquire::Retries "10";' > /etc/apt/apt.conf.d/80-retries
3434

3535
- name: Download OpenVINO debian packages
36-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
36+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
3737
with:
3838
name: openvino_debian_packages
3939
path: ${{ env.DEBIAN_PACKAGES_DIR }}

.github/workflows/job_gpu_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
GTEST_PARALLEL_SCRIPT: ${{ github.workspace }}/gtest_parallel.py
3939
steps:
4040
- name: Download OpenVINO package
41-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
41+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4242
with:
4343
name: 'openvino_package'
4444
path: ${{ env.INSTALL_DIR }}
4545

4646
- name: Download OpenVINO tests package
47-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
47+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4848
with:
4949
name: 'openvino_tests'
5050
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/job_onnx_models_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
if: ${{ github.event_name != 'merge_group' }}
3939
steps:
4040
- name: Download OpenVINO package
41-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
41+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4242
with:
4343
name: openvino_package
4444
path: ${{ env.INSTALL_DIR }}
4545

4646
- name: Download OpenVINO tests package
47-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
47+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4848
with:
4949
name: openvino_tests
5050
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/job_onnx_runtime.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
ONNX_RUNTIME_BUILD_DIR: ${{ github.workspace }}/onnxruntime/build
4444
steps:
4545
- name: Download OpenVINO package
46-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
46+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4747
with:
4848
name: openvino_package
4949
path: ${{ env.INSTALL_DIR }}

.github/workflows/job_openvino_js.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
echo "OPENVINO_JS_LIBS_DIR=$GITHUB_WORKSPACE/openvino/src/bindings/js/node/bin" >> "$GITHUB_ENV"
4646
4747
- name: Download OpenVINO JS package
48-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
48+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4949
with:
5050
name: openvino_js_package
5151
path: ${{ env.OPENVINO_JS_LIBS_DIR }}

.github/workflows/job_python_unit_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
steps:
4242

4343
- name: Download OpenVINO package
44-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
44+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4545
with:
4646
name: openvino_package
4747
path: ${{ env.INSTALL_DIR }}
4848

4949
- name: Download OpenVINO tests package
50-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
50+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
5151
with:
5252
name: openvino_tests
5353
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/job_pytorch_models_tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,19 +49,19 @@ jobs:
4949
fi
5050
5151
- name: Download OpenVINO package
52-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
52+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
5353
with:
5454
name: openvino_package
5555
path: ${{ env.INSTALL_DIR }}
5656

5757
- name: Download OpenVINO tokenizers extension
58-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
58+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
5959
with:
6060
name: openvino_tokenizers_wheel
6161
path: ${{ env.INSTALL_DIR }}
6262

6363
- name: Download OpenVINO tests package
64-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
64+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
6565
with:
6666
name: openvino_tests
6767
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/job_samples_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
BUILD_DIR: ${{ github.workspace }}/build
3535
steps:
3636
- name: Download OpenVINO package
37-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
37+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
3838
with:
3939
name: openvino_package
4040
path: ${{ env.INSTALL_DIR }}
4141

4242
- name: Download OpenVINO tests package
43-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
43+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4444
with:
4545
name: openvino_tests
4646
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/job_tensorflow_layer_tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ jobs:
4444
LAYER_TESTS_INSTALL_DIR: ${{ github.workspace }}/install/tests/layer_tests
4545
steps:
4646
- name: Download OpenVINO package
47-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
47+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4848
with:
4949
name: openvino_package
5050
path: ${{ env.INSTALL_DIR }}
5151

5252
- name: Download OpenVINO tests package
53-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
53+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
5454
with:
5555
name: openvino_tests
5656
path: ${{ env.INSTALL_TEST_DIR }}
5757

5858
- name: Download OpenVINO tokenizers extension
59-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
59+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
6060
with:
6161
name: openvino_tokenizers_wheel
6262
path: ${{ env.INSTALL_DIR }}

.github/workflows/job_tensorflow_models_tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@ jobs:
3737
NUMBER_OF_REPLICAS: 2
3838
steps:
3939
- name: Download OpenVINO package
40-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
40+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4141
with:
4242
name: openvino_package
4343
path: ${{ env.INSTALL_DIR }}
4444

4545
- name: Download OpenVINO tokenizers extension
46-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
46+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
4747
with:
4848
name: openvino_tokenizers_wheel
4949
path: ${{ env.INSTALL_DIR }}
5050

5151
- name: Download OpenVINO tests package
52-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
52+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
5353
with:
5454
name: openvino_tests
5555
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/job_tokenizers.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
ref: 'master'
7474

7575
- name: Download OpenVINO package
76-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
76+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
7777
with:
7878
name: openvino_package
7979
path: ${{ env.INSTALL_DIR }}

.github/workflows/linux.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -397,13 +397,13 @@ jobs:
397397
#
398398

399399
- name: Download OpenVINO package
400-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
400+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
401401
with:
402402
name: openvino_package
403403
path: ${{ env.INSTALL_DIR }}
404404

405405
- name: Download OpenVINO tests package
406-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
406+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
407407
with:
408408
name: openvino_tests
409409
path: ${{ env.INSTALL_TEST_DIR }}
@@ -649,13 +649,13 @@ jobs:
649649

650650
steps:
651651
- name: Download OpenVINO package
652-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
652+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
653653
with:
654654
name: openvino_package
655655
path: ${{ env.INSTALL_DIR }}
656656

657657
- name: Download OpenVINO Developer package
658-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
658+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
659659
with:
660660
name: openvino_developer_package
661661
path: ${{ env.INSTALL_DIR }}

.github/workflows/linux_conditional_compilation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ jobs:
293293
ref: 'master'
294294

295295
- name: Download selective build statistics package
296-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
296+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
297297
with:
298298
name: openvino_selective_build_stat
299299
path: ${{ env.SELECTIVE_BUILD_STAT_DIR }}

.github/workflows/linux_sanitizers.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -230,13 +230,13 @@ jobs:
230230
run: echo 'Acquire::Retries "10";' > /etc/apt/apt.conf.d/80-retries
231231

232232
- name: Download OpenVINO package
233-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
233+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
234234
with:
235235
name: ${{ format('openvino_package_{0}', matrix.SANITIZER) }}
236236
path: ${{ env.INSTALL_DIR }}
237237

238238
- name: Download OpenVINO tests package
239-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
239+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
240240
with:
241241
name: ${{ format('openvino_tests_{0}', matrix.SANITIZER) }}
242242
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/windows.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -284,13 +284,13 @@ jobs:
284284

285285
steps:
286286
- name: Download OpenVINO package
287-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
287+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
288288
with:
289289
name: openvino_package
290290
path: ${{ env.INSTALL_DIR }}
291291

292292
- name: Download OpenVINO tests package
293-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
293+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
294294
with:
295295
name: openvino_tests
296296
path: ${{ env.INSTALL_TEST_DIR }}
@@ -378,7 +378,7 @@ jobs:
378378
path: 'openvino'
379379

380380
- name: Download OpenVINO js package
381-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
381+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
382382
with:
383383
name: openvino_js_package
384384
path: ${{ env.OPENVINO_JS_LIBS_DIR }}
@@ -449,13 +449,13 @@ jobs:
449449

450450
steps:
451451
- name: Download OpenVINO package
452-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
452+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
453453
with:
454454
name: openvino_package
455455
path: ${{ env.INSTALL_DIR }}
456456

457457
- name: Download OpenVINO tests package
458-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
458+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
459459
with:
460460
name: openvino_tests
461461
path: ${{ env.INSTALL_TEST_DIR }}
@@ -637,13 +637,13 @@ jobs:
637637

638638
steps:
639639
- name: Download OpenVINO package
640-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
640+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
641641
with:
642642
name: openvino_package
643643
path: ${{ env.INSTALL_DIR }}
644644

645645
- name: Download OpenVINO tests package
646-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
646+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
647647
with:
648648
name: openvino_tests
649649
path: ${{ env.INSTALL_TEST_DIR }}
@@ -837,13 +837,13 @@ jobs:
837837
if: fromJSON(needs.smart_ci.outputs.affected_components).CPU.test
838838
steps:
839839
- name: Download OpenVINO package
840-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
840+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
841841
with:
842842
name: openvino_package
843843
path: ${{ env.INSTALL_DIR }}
844844

845845
- name: Download OpenVINO tests package
846-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
846+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
847847
with:
848848
name: openvino_tests
849849
path: ${{ env.INSTALL_TEST_DIR }}

.github/workflows/windows_conditional_compilation.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ jobs:
292292
ref: 'master'
293293

294294
- name: Download selective build statistics package
295-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
295+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
296296
with:
297297
name: openvino_selective_build_stat
298298
path: ${{ env.SELECTIVE_BUILD_STAT_DIR }}
@@ -355,7 +355,7 @@ jobs:
355355

356356
steps:
357357
- name: Download OpenVINO tests package
358-
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
358+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
359359
with:
360360
name: openvino_tests
361361
path: ${{ env.INSTALL_TEST_DIR }}

0 commit comments

Comments
 (0)