Skip to content

Commit 40de72c

Browse files
authored
Merge pull request #1530 from oneapi-src/dependabot/github_actions/dot-github/workflows/actions-dependencies-017b966eef
Bump the actions-dependencies group across 1 directory with 4 updates
2 parents 44f1c63 + 49071af commit 40de72c

10 files changed

+20
-20
lines changed

.github/workflows/nightly.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
fetch-depth: 0
132132

133133
- name: Restore vcpkg cache
134-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
134+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
135135
id: cache
136136
with:
137137
path: vcpkg_pkgs_cache.zip
@@ -243,7 +243,7 @@ jobs:
243243
244244
- name: Save vcpkg cache
245245
if: steps.cache.outputs.cache-hit != 'true'
246-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
246+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
247247
with:
248248
path: ${{github.workspace}}/vcpkg_pkgs_cache.zip
249249
key: ${{ steps.cache.outputs.cache-primary-key }}
@@ -273,7 +273,7 @@ jobs:
273273
fetch-depth: 0
274274

275275
- name: Restore vcpkg cache
276-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
276+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
277277
id: cache
278278
with:
279279
path: vcpkg_pkgs_cache.zip
@@ -354,7 +354,7 @@ jobs:
354354
355355
- name: Save vcpkg cache
356356
if: steps.cache.outputs.cache-hit != 'true'
357-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
357+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
358358
with:
359359
path: ${{github.workspace}}/vcpkg_pkgs_cache.zip
360360
key: ${{ steps.cache.outputs.cache-primary-key }}

.github/workflows/reusable_basic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ jobs:
286286
arch: x64
287287

288288
- name: Restore vcpkg cache
289-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
289+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
290290
id: cache
291291
with:
292292
path: vcpkg_pkgs_cache.zip
@@ -436,7 +436,7 @@ jobs:
436436
437437
- name: Save vcpkg cache
438438
if: steps.cache.outputs.cache-hit != 'true'
439-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
439+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
440440
with:
441441
path: ${{github.workspace}}/vcpkg_pkgs_cache.zip
442442
key: ${{ steps.cache.outputs.cache-primary-key }}

.github/workflows/reusable_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
./scripts/check_license/check_headers.sh . "Apache-2.0 WITH LLVM-exception" -v
5858
5959
- name: Run a spell check
60-
uses: crate-ci/typos@85f62a8a84f939ae994ab3763f01a0296d61a7ee # v1.36.2
60+
uses: crate-ci/typos@0c17dabcee8b8f1957fa917d17393a23e02e1583 # v1.36.3
6161
with:
6262
config: ./.github/workflows/.spellcheck-conf.toml
6363

.github/workflows/reusable_codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
python-version: "3.10"
4242

4343
- name: Initialize CodeQL
44-
uses: github/codeql-action/init@192325c86100d080feab897ff886c34abd4c83a3 # v3.29.5
44+
uses: github/codeql-action/init@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
4545
with:
4646
languages: cpp
4747
trap-caching: false
4848

4949
- name: "[Win] Restore vcpkg cache"
5050
if: matrix.os == 'windows-latest'
51-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
51+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
5252
id: cache
5353
with:
5454
path: vcpkg_pkgs_cache.zip
@@ -108,7 +108,7 @@ jobs:
108108
run: cmake --build ${{env.BUILD_DIR}} --config Release -j
109109

110110
- name: Perform CodeQL Analysis
111-
uses: github/codeql-action/analyze@192325c86100d080feab897ff886c34abd4c83a3 # v3.29.5
111+
uses: github/codeql-action/analyze@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
112112

113113
- name: "[Win] Prepare vcpkg cache"
114114
if: matrix.os == 'windows-latest' && steps.cache.outputs.cache-hit != 'true'
@@ -117,7 +117,7 @@ jobs:
117117
118118
- name: "[Win] Save vcpkg cache"
119119
if: matrix.os == 'windows-latest' && steps.cache.outputs.cache-hit != 'true'
120-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
120+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
121121
with:
122122
path: ${{github.workspace}}/vcpkg_pkgs_cache.zip
123123
key: ${{ steps.cache.outputs.cache-primary-key }}

.github/workflows/reusable_compatibility.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
path: ${{github.workspace}}/tag_version
143143

144144
- name: Restore vcpkg cache
145-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
145+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
146146
id: cache
147147
with:
148148
path: vcpkg_pkgs_cache.zip
@@ -282,7 +282,7 @@ jobs:
282282
283283
- name: Save vcpkg cache
284284
if: steps.cache.outputs.cache-hit != 'true'
285-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
285+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
286286
with:
287287
path: ${{github.workspace}}/vcpkg_pkgs_cache.zip
288288
key: ${{ steps.cache.outputs.cache-primary-key }}

.github/workflows/reusable_dockers_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
# Login and push require login/pass to GHCR - omit these steps on forks
3535
- name: Login to GitHub Container Registry
3636
if: ${{ github.event_name != 'pull_request' && github.repository == 'oneapi-src/unified-memory-framework' }}
37-
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
37+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
3838
with:
3939
registry: ghcr.io
4040
username: bb-ur

.github/workflows/reusable_fast.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
fetch-depth: 0
110110

111111
- name: Restore vcpkg cache
112-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
112+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
113113
id: cache
114114
with:
115115
path: vcpkg_pkgs_cache.zip
@@ -185,7 +185,7 @@ jobs:
185185
186186
- name: Save vcpkg cache
187187
if: steps.cache.outputs.cache-hit != 'true'
188-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
188+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
189189
with:
190190
path: ${{github.workspace}}/vcpkg_pkgs_cache.zip
191191
key: ${{ steps.cache.outputs.cache-primary-key }}

.github/workflows/reusable_gpu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: "[Win] Restore vcpkg cache"
7777
if: matrix.os == 'Windows'
78-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
78+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
7979
id: cache
8080
with:
8181
path: vcpkg_pkgs_cache.zip
@@ -197,7 +197,7 @@ jobs:
197197
198198
- name: "[Win] Save vcpkg cache"
199199
if: matrix.os == 'Windows' && steps.cache.outputs.cache-hit != 'true'
200-
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
200+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
201201
with:
202202
path: ${{github.workspace}}/vcpkg_pkgs_cache.zip
203203
key: ${{ steps.cache.outputs.cache-primary-key }}

.github/workflows/reusable_trivy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ jobs:
3838
cat trivy-results.sarif
3939
4040
- name: Upload results
41-
uses: github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # v3.29.5
41+
uses: github/codeql-action/upload-sarif@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
4242
with:
4343
sarif_file: 'trivy-results.sarif'

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ jobs:
4949

5050
# Upload the results to GitHub's code scanning dashboard.
5151
- name: Upload to code-scanning
52-
uses: github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # v3.29.5
52+
uses: github/codeql-action/upload-sarif@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
5353
with:
5454
sarif_file: scorecard_results.sarif

0 commit comments

Comments
 (0)