Skip to content

Commit 1a6254c

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/download-artifact-6.0.0
2 parents d32e657 + fed3161 commit 1a6254c

10 files changed

Lines changed: 47 additions & 47 deletions

File tree

.github/workflows/buildmgr.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
fi
101101
102102
- name: Archive cbuildgen
103-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
103+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
104104
with:
105105
name: cbuildgen-${{ matrix.target }}-${{ matrix.arch }}
106106
path: ./build/tools/buildmgr/cbuildgen/${{ matrix.target }}-${{ matrix.arch }}/Release/cbuildgen${{ matrix.binary_extension }}
@@ -160,7 +160,7 @@ jobs:
160160
echo "retention_days=$(echo '${{ (!github.event.repository.private && (github.event_name == 'push' || github.event.schedule != '')) && '7' || '1' }}')" >> $GITHUB_OUTPUT
161161
162162
- name: Upload documentation
163-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
163+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
164164
with:
165165
name: documentation
166166
path: ./build/tools/buildmgr/docs/doxygen/output/
@@ -297,15 +297,15 @@ jobs:
297297
working-directory: tools/buildmgr/cbuildgen/installer
298298

299299
- name: Archive cbuild_install.sh
300-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
300+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
301301
with:
302302
name: cbuild_install
303303
path: tools/buildmgr/cbuildgen/installer/cbuild_install.sh
304304
retention-days: ${{ needs.setup.outputs.retention_days }}
305305
if-no-files-found: error
306306

307307
- name: Archive deb package
308-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
308+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
309309
with:
310310
name: deb_package
311311
path: tools/buildmgr/cbuildgen/installer/cmsis-build*.deb
@@ -444,7 +444,7 @@ jobs:
444444

445445
- name: Archive unittest
446446
if: always() && (matrix.arch != 'arm64')
447-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
447+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
448448
with:
449449
name: unit_test_result_buildmgr-${{ matrix.target }}-${{ matrix.arch }}
450450
path: ./build/test_reports/cbuildunittests-*.xml
@@ -481,7 +481,7 @@ jobs:
481481

482482
- name: Archive Cbuild Integration Tests
483483
if: always() && ((matrix.arch == 'amd64') || (startsWith(matrix.runs_on, 'ubuntu')))
484-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
484+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
485485
with:
486486
name: integ_test_result_buildmgr-${{ matrix.target }}-${{ matrix.arch }}
487487
path: ./build/test_reports/cbuildintegtests-report-${{ matrix.target }}-${{ matrix.arch }}.xml
@@ -566,7 +566,7 @@ jobs:
566566
567567
- name: Archive unittest
568568
if: (github.event_name == 'push')
569-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
569+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
570570
with:
571571
name: unit_test_result_buildmgr-linux-amd64
572572
path: ./build/test_reports/cbuildunittests-*.xml
@@ -575,7 +575,7 @@ jobs:
575575

576576
- name: Archive Cbuild Integration Tests
577577
if: (github.event_name == 'push')
578-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
578+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
579579
with:
580580
name: integ_test_result_buildmgr-linux-amd64
581581
path: ./build/test_reports/cbuildintegtests-*.xml
@@ -613,7 +613,7 @@ jobs:
613613
attempt_delay: 5000
614614

615615
- name: Archive coverage report
616-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
616+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
617617
with:
618618
name: coverage-report-buildmgr
619619
path: |
@@ -724,7 +724,7 @@ jobs:
724724
egress-policy: audit
725725

726726
- name: Event File
727-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
727+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
728728
with:
729729
name: Event File buildmgr
730730
path: ${{ github.event_path }}

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
submodules: true
4040

4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
42+
uses: github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5
4343
with:
4444
languages: cpp
4545
queries: security-and-quality
@@ -55,4 +55,4 @@ jobs:
5555
working-directory: ./build
5656

5757
- name: Perform CodeQL Analysis
58-
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
58+
uses: github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5

.github/workflows/cpp-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
7272
- name: Archive Cppcheck results
7373
if: ${{ steps.errors.outputs.value == '1' }}
74-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
74+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
7575
with:
7676
name: cppcheck-report
7777
path: ./${{ env.linter_report }}

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
working-directory: coverage/
6060

6161
- name: Archive merged coverage report
62-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
62+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6363
with:
6464
name: merged-coverage-report
6565
path: ./coverage/merged_coverage.info

.github/workflows/packchk.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282

8383
- name: Archive packchk binary
8484
if: ${{ github.event_name != 'release' }}
85-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
85+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
8686
with:
8787
name: packchk-${{ matrix.target }}-${{ matrix.arch }}
8888
path: build/tools/packchk/packchk-*-${{ matrix.target }}-${{ matrix.arch }}.*
@@ -191,7 +191,7 @@ jobs:
191191

192192
- name: Archive unit test results
193193
if: always() && (matrix.arch != 'arm64')
194-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
194+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
195195
with:
196196
name: unit_test_result_packchk-${{ matrix.target }}-${{ matrix.arch }}
197197
path: ./build/test_reports/packchkunittests-*.xml
@@ -200,7 +200,7 @@ jobs:
200200

201201
- name: Archive integration test results
202202
if: always() && (matrix.arch != 'arm64')
203-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
203+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
204204
with:
205205
name: integ_test_result_packchk-${{ matrix.target }}-${{ matrix.arch }}
206206
path: ./build/test_reports/packchkintegtests-*.xml
@@ -267,7 +267,7 @@ jobs:
267267
268268
- name: Archive unit test results
269269
if: (github.event_name == 'push')
270-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
270+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
271271
with:
272272
name: unit_test_result_packchk-linux-amd64
273273
path: ./build/test_reports/packchkunittests-*.xml
@@ -276,7 +276,7 @@ jobs:
276276

277277
- name: Archive integration test results
278278
if: (github.event_name == 'push')
279-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
279+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
280280
with:
281281
name: integ_test_result_packchk-linux-amd64
282282
path: ./build/test_reports/packchkintegtests-*.xml
@@ -314,7 +314,7 @@ jobs:
314314
attempt_delay: 5000
315315

316316
- name: Archive coverage report
317-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
317+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
318318
with:
319319
name: coverage-report-packchk
320320
path: |
@@ -370,7 +370,7 @@ jobs:
370370
egress-policy: audit
371371

372372
- name: Event File
373-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
373+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
374374
with:
375375
name: Event File packchk
376376
path: ${{ github.event_path }}

.github/workflows/packgen.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
fi
101101
102102
- name: Archive packgen
103-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
103+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
104104
with:
105105
name: packgen-${{ matrix.target }}-${{ matrix.arch }}
106106
path: ./build/tools/packgen/${{ matrix.target }}-${{ matrix.arch }}/Release/${{ matrix.binary }}
@@ -212,7 +212,7 @@ jobs:
212212

213213
- name: Archive unit tests results
214214
if: always() && (matrix.arch != 'arm64')
215-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
215+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
216216
with:
217217
name: unit_test_result_packgen-${{ matrix.target }}-${{ matrix.arch }}
218218
path: ./build/test_reports/packgenunittests-*.xml
@@ -270,7 +270,7 @@ jobs:
270270
271271
- name: Archive unit tests results
272272
if: (github.event_name == 'push')
273-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
273+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
274274
with:
275275
name: unit_test_result_packgen-linux-amd64
276276
path: ./build/test_reports/packgenunittests-*.xml
@@ -308,7 +308,7 @@ jobs:
308308
attempt_delay: 5000
309309

310310
- name: Archive coverage report
311-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
311+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
312312
with:
313313
name: coverage-report-packgen
314314
path: |
@@ -329,7 +329,7 @@ jobs:
329329
egress-policy: audit
330330

331331
- name: Event File
332-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
332+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
333333
with:
334334
name: Event File packgen
335335
path: ${{ github.event_path }}

.github/workflows/projmgr.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
fi
106106
107107
- name: Archive projmgr
108-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
108+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
109109
with:
110110
name: projmgr-${{ matrix.target }}-${{ matrix.arch }}
111111
path: ./build/tools/projmgr/${{ matrix.target }}-${{ matrix.arch }}/Release/${{ matrix.binary }}
@@ -114,7 +114,7 @@ jobs:
114114

115115
- name: Archive projmgr schemas
116116
if: matrix.arch == 'amd64' && matrix.target == 'linux'
117-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
117+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
118118
with:
119119
name: projmgr-schemas
120120
path: ./tools/projmgr/schemas
@@ -123,7 +123,7 @@ jobs:
123123

124124
- name: Archive projmgr templates
125125
if: matrix.arch == 'amd64' && matrix.target == 'linux'
126-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
126+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
127127
with:
128128
name: projmgr-templates
129129
path: ./tools/projmgr/templates
@@ -178,7 +178,7 @@ jobs:
178178

179179
- name: Archive projmgr swig python libs
180180
if: always() && matrix.pyswig
181-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
181+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
182182
with:
183183
name: projmgr-swig-python-${{ matrix.target }}-${{ matrix.arch }}
184184
path: |
@@ -189,7 +189,7 @@ jobs:
189189

190190
- name: Archive projmgr swig go libs
191191
if: always() && matrix.goswig
192-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
192+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
193193
with:
194194
name: projmgr-swig-go-${{ matrix.target }}-${{ matrix.arch }}
195195
path: |
@@ -395,7 +395,7 @@ jobs:
395395

396396
- name: Archive unit tests results
397397
if: always() && (matrix.arch != 'arm64')
398-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
398+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
399399
with:
400400
name: unittest-${{ matrix.target }}-${{ matrix.arch }}
401401
path: ./build/Testing/Temporary/LastTest.log
@@ -404,7 +404,7 @@ jobs:
404404

405405
- name: Archive gtest report
406406
if: always() && (matrix.arch != 'arm64')
407-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
407+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
408408
with:
409409
name: unit_test_result_projmgr-${{ matrix.target }}-${{ matrix.arch }}
410410
path: ./build/test_reports/projmgrunittests-*.xml
@@ -462,7 +462,7 @@ jobs:
462462
463463
- name: Archive test report
464464
if: (github.event_name == 'push')
465-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
465+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
466466
with:
467467
name: unit_test_result_projmgr-linux-amd64
468468
path: ./build/test_reports/projmgrunittests-*.xml
@@ -500,7 +500,7 @@ jobs:
500500
attempt_delay: 5000
501501

502502
- name: Archive coverage report
503-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
503+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
504504
with:
505505
name: coverage-report-projmgr
506506
path: |
@@ -521,7 +521,7 @@ jobs:
521521
egress-policy: audit
522522

523523
- name: Event File
524-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
524+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
525525
with:
526526
name: Event File projmgr
527527
path: ${{ github.event_path }}

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ jobs:
6363
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6464
# format to the repository Actions tab.
6565
- name: "Upload artifact"
66-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
66+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6767
with:
6868
name: SARIF file
6969
path: results.sarif
7070
retention-days: 5
7171

7272
# Upload the results to GitHub's code scanning dashboard.
7373
- name: "Upload to code-scanning"
74-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
74+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5
7575
with:
7676
sarif_file: results.sarif

0 commit comments

Comments
 (0)