Skip to content

Commit 0f153a6

Browse files
committed
Update actions deps
Signed-off-by: Doronin, Maksim <maksim.doronin@intel.com>
1 parent 9c95f21 commit 0f153a6

File tree

7 files changed

+34
-34
lines changed

7 files changed

+34
-34
lines changed

.github/workflows/clang-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest-8-cores
2222
steps:
2323
- name: Checkout NPU Compiler
24-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
24+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2525
with:
2626
fetch-depth: 0
2727
lfs: true

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ jobs:
3030
build-mode: none
3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
33+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3434

3535
- name: Initialize CodeQL
36-
uses: github/codeql-action/init@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
36+
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
3737
with:
3838
languages: ${{ matrix.language }}
3939
build-mode: ${{ matrix.build-mode }}
4040

4141
- name: Perform CodeQL Analysis
42-
uses: github/codeql-action/analyze@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
42+
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
4343
with:
4444
category: "/language:${{matrix.language}}"
4545

.github/workflows/job_build_cid.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
cmake -E make_directory "${CID_PACKAGE_ARTIFACTS_DIR}"
119119
120120
- name: Checkout actions
121-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
121+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
122122
with:
123123
path: ${{ env.NPU_ACTIONS_DIR }}
124124
sparse-checkout: |
@@ -177,14 +177,14 @@ jobs:
177177
- name: Restore CiD artifacts from cache
178178
if: ${{ inputs.build-cache }}
179179
id: cache-restore
180-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
180+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
181181
with:
182182
key: ${{ steps.cache-key.outputs.cache-key }}
183183
path: ${{ env.CID_PACKAGE_ARTIFACTS_DIR }}
184184

185185
- name: Clone OpenVINO
186186
if: ${{ !steps.cache-restore.outputs.cache-hit }}
187-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
187+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
188188
timeout-minutes: 15
189189
with:
190190
repository: ${{ steps.versions.outputs.openvino-repository }}
@@ -194,15 +194,15 @@ jobs:
194194

195195
- name: Checkout NPU Compiler
196196
if: ${{ !steps.cache-restore.outputs.cache-hit }}
197-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
197+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
198198
with:
199199
path: ${{ env.NPU_COMPILER_REPO }}
200200
submodules: true
201201
lfs: true
202202

203203
- name: System info
204204
if: ${{ !steps.cache-restore.outputs.cache-hit }}
205-
uses: openvinotoolkit/openvino/.github/actions/system_info@7a975177ff432c687e5619e8fb22e4bf265e48b7 # 2025.4.0
205+
uses: openvinotoolkit/openvino/.github/actions/system_info@82bbf0292c5bd490bc25a383e63d6461d3ee05c5 # 2025.4.1
206206

207207
- name: Setup python version
208208
if: ${{ !steps.cache-restore.outputs.cache-hit }}
@@ -315,13 +315,13 @@ jobs:
315315
316316
- name: Cache CiD artifacts
317317
if: ${{ inputs.build-cache && !steps.cache-restore.outputs.cache-hit }}
318-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
318+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
319319
with:
320320
path: ${{ env.CID_PACKAGE_ARTIFACTS_DIR }}
321321
key: ${{ steps.cache-key.outputs.cache-key }}
322322

323323
- name: Upload CiD package
324-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
324+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
325325
with:
326326
name: ${{ steps.package-name.outputs.cid-package-full-name }}
327327
path: |

.github/workflows/job_build_drv_linux.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ jobs:
6464
- name: Restore Driver package from cache
6565
if: ${{ inputs.build-cache }}
6666
id: cache-restore
67-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
67+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
6868
with:
6969
key: ${{ steps.cache-key.outputs.cache-key }}
7070
path: ${{ env.NPU_DRIVER_INSTALL_DIR }}
7171

7272
- name: Checkout versions action
7373
if: ${{ !steps.cache-restore.outputs.cache-hit }}
74-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
74+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
7575
with:
7676
path: ${{ env.NPU_ACTIONS_DIR }}
7777
sparse-checkout: |
@@ -85,7 +85,7 @@ jobs:
8585

8686
- name: Clone Linux NPU Driver
8787
if: ${{ !steps.cache-restore.outputs.cache-hit }}
88-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
88+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
8989
timeout-minutes: 15
9090
with:
9191
repository: ${{ steps.versions.outputs.npu-linux-driver-repository }}
@@ -95,7 +95,7 @@ jobs:
9595

9696
- name: System info
9797
if: ${{ !steps.cache-restore.outputs.cache-hit }}
98-
uses: openvinotoolkit/openvino/.github/actions/system_info@7a975177ff432c687e5619e8fb22e4bf265e48b7 # 2025.4.0
98+
uses: openvinotoolkit/openvino/.github/actions/system_info@82bbf0292c5bd490bc25a383e63d6461d3ee05c5 # 2025.4.1
9999

100100
- name: Install system packages
101101
if: ${{ !steps.cache-restore.outputs.cache-hit }}
@@ -145,13 +145,13 @@ jobs:
145145
146146
- name: Cache artifacts
147147
if: ${{ inputs.build-cache && !steps.cache-restore.outputs.cache-hit }}
148-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
148+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
149149
with:
150150
path: ${{ env.NPU_DRIVER_INSTALL_DIR }}
151151
key: ${{ steps.cache-key.outputs.cache-key }}
152152

153153
- name: Upload artifacts
154-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
154+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
155155
with:
156156
path: ${{ env.NPU_DRIVER_INSTALL_DIR }}
157157
name: ${{ env.NPU_DRIVER_BUILD_PACKAGE }}

.github/workflows/job_build_plugin_linux.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@ jobs:
8888
- name: Restore OpenVINO/NPU package from cache
8989
if: ${{ inputs.build-cache }}
9090
id: cache-restore
91-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
91+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
9292
with:
9393
key: ${{ steps.cache-key.outputs.cache-key }}
9494
path: ${{ env.OPENVINO_INSTALL_DIR }}
9595

9696
- name: Checkout versions action
9797
if: ${{ !steps.cache-restore.outputs.cache-hit }}
98-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
98+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
9999
with:
100100
path: ${{ env.NPU_ACTIONS_DIR }}
101101
sparse-checkout: |
@@ -109,7 +109,7 @@ jobs:
109109

110110
- name: Clone OpenVINO
111111
if: ${{ !steps.cache-restore.outputs.cache-hit }}
112-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
112+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
113113
timeout-minutes: 15
114114
with:
115115
repository: ${{ steps.versions.outputs.openvino-repository }}
@@ -119,7 +119,7 @@ jobs:
119119

120120
- name: Clone NPU Compiler
121121
if: ${{ !steps.cache-restore.outputs.cache-hit }}
122-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
122+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
123123
timeout-minutes: 15
124124
with:
125125
path: ${{ env.NPU_COMPILER_REPO }}
@@ -128,7 +128,7 @@ jobs:
128128

129129
- name: System info
130130
if: ${{ !steps.cache-restore.outputs.cache-hit }}
131-
uses: openvinotoolkit/openvino/.github/actions/system_info@7a975177ff432c687e5619e8fb22e4bf265e48b7 # 2025.4.0
131+
uses: openvinotoolkit/openvino/.github/actions/system_info@82bbf0292c5bd490bc25a383e63d6461d3ee05c5 # 2025.4.1
132132

133133
- name: Setup python version
134134
if: ${{ !steps.cache-restore.outputs.cache-hit }}
@@ -152,7 +152,7 @@ jobs:
152152
153153
- name: Initialize CodeQL
154154
if: ${{ !steps.cache-restore.outputs.cache-hit && inputs.with-codeql }}
155-
uses: github/codeql-action/init@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
155+
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
156156
with:
157157
languages: c-cpp
158158
build-mode: manual
@@ -239,7 +239,7 @@ jobs:
239239
- name: Perform CodeQL Analysis
240240
id: codeql-analyze
241241
if: ${{ !steps.cache-restore.outputs.cache-hit && inputs.with-codeql }}
242-
uses: github/codeql-action/analyze@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
242+
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
243243
with:
244244
category: "/language:c-cpp"
245245
output: ${{ env.CODEQL_OUTPUTS }}
@@ -262,28 +262,28 @@ jobs:
262262
263263
- name: Upload CodeQL SARIF
264264
if: ${{ !steps.cache-restore.outputs.cache-hit && inputs.with-codeql }}
265-
uses: github/codeql-action/upload-sarif@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
265+
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
266266
with:
267267
sarif_file: ${{ env.CODEQL_OUTPUTS }}/filtered-results.sarif
268268
checkout_path: ${{ env.NPU_COMPILER_REPO }}
269269

270270
- name: Upload CodeQL loc as a Build Artifact
271271
if: ${{ !steps.cache-restore.outputs.cache-hit && inputs.with-codeql }}
272-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
272+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
273273
with:
274274
name: ${{ env.CODEQL_ARTIFACT_NAME }}
275275
path: ${{ env.CODEQL_OUTPUTS }}
276276
retention-days: 1
277277

278278
- name: Cache artifacts
279279
if: ${{ inputs.build-cache && !steps.cache-restore.outputs.cache-hit }}
280-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
280+
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
281281
with:
282282
path: ${{ env.OPENVINO_INSTALL_DIR }}
283283
key: ${{ steps.cache-key.outputs.cache-key }}
284284

285285
- name: Upload artifacts
286-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
286+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
287287
with:
288288
path: ${{ env.OPENVINO_INSTALL_DIR }}
289289
name: ${{ env.OPENVINO_BUILD_PACKAGE }}

.github/workflows/job_tests_compilation_linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
steps:
6666
- name: Checkout
6767
if: ${{ !(matrix.npu-platform == 'NPU.5010' && inputs.compiler-type == 'DRIVER') }}
68-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
68+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
6969

7070
- name: Download artifacts
7171
if: ${{ !(matrix.npu-platform == 'NPU.5010' && inputs.compiler-type == 'DRIVER') }}
@@ -112,14 +112,14 @@ jobs:
112112

113113
- name: Upload logs artifacts
114114
if: ${{ always() && env.LOGS_DIR }}
115-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
115+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
116116
with:
117117
path: ${{ env.LOGS_DIR }}
118118
name: ${{ env.LOGS_ARTIFACT_NAME }}
119119

120120
- name: Upload blobs artifacts
121121
if: ${{ always() && inputs.export-blobs && env.BLOBS_DIR }}
122-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
122+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
123123
with:
124124
path: ${{ env.BLOBS_DIR }}
125125
name: ${{ env.BLOBS_ARTIFACT_NAME }}

.github/workflows/scorecard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: "Checkout code"
24-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
24+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2525
with:
2626
persist-credentials: false
2727

@@ -33,13 +33,13 @@ jobs:
3333
publish_results: true
3434

3535
- name: "Upload artifact"
36-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
36+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
3737
with:
3838
name: SARIF file
3939
path: results.sarif
4040
retention-days: 5
4141

4242
- name: "Upload to code-scanning"
43-
uses: github/codeql-action/upload-sarif@fe4161a26a8629af62121b670040955b330f9af2 # v4.31.6
43+
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
4444
with:
4545
sarif_file: results.sarif

0 commit comments

Comments
 (0)