Skip to content

Commit 8bbd16e

Browse files
authored
Merge branch 'main' into use-node-24
2 parents 42aee1f + f85c849 commit 8bbd16e

38 files changed

Lines changed: 442 additions & 99 deletions

.github/workflows/buildmgr.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
steps:
6565
- name: Harden Runner
6666
if: ${{ !github.event.repository.private }}
67-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
67+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
6868
with:
6969
egress-policy: audit
7070

@@ -106,7 +106,7 @@ jobs:
106106
fi
107107
108108
- name: Archive cbuildgen
109-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
109+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
110110
with:
111111
name: cbuildgen-${{ matrix.target }}-${{ matrix.arch }}
112112
path: ./build/tools/buildmgr/cbuildgen/${{ matrix.target }}-${{ matrix.arch }}/Release/cbuildgen${{ matrix.binary_extension }}
@@ -127,7 +127,7 @@ jobs:
127127
steps:
128128
- name: Harden Runner
129129
if: ${{ !github.event.repository.private }}
130-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
130+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
131131
with:
132132
egress-policy: audit
133133

@@ -168,7 +168,7 @@ jobs:
168168
echo "retention_days=$(echo '${{ (!github.event.repository.private && (github.event_name == 'push' || github.event.schedule != '')) && '7' || '1' }}')" >> $GITHUB_OUTPUT
169169
170170
- name: Upload documentation
171-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
171+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
172172
with:
173173
name: documentation
174174
path: ./build/tools/buildmgr/docs/doxygen/output/
@@ -228,7 +228,7 @@ jobs:
228228
steps:
229229
- name: Harden Runner
230230
if: ${{ !github.event.repository.private }}
231-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
231+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
232232
with:
233233
egress-policy: audit
234234

@@ -307,15 +307,15 @@ jobs:
307307
working-directory: tools/buildmgr/cbuildgen/installer
308308

309309
- name: Archive cbuild_install.sh
310-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
310+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
311311
with:
312312
name: cbuild_install
313313
path: tools/buildmgr/cbuildgen/installer/cbuild_install.sh
314314
retention-days: ${{ needs.setup.outputs.retention_days }}
315315
if-no-files-found: error
316316

317317
- name: Archive deb package
318-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
318+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
319319
with:
320320
name: deb_package
321321
path: tools/buildmgr/cbuildgen/installer/cmsis-build*.deb
@@ -362,7 +362,7 @@ jobs:
362362
steps:
363363
- name: Harden Runner
364364
if: ${{ !github.event.repository.private }}
365-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
365+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
366366
with:
367367
egress-policy: audit
368368

@@ -451,7 +451,7 @@ jobs:
451451

452452
- name: Archive unittest
453453
if: always() && (matrix.arch != 'arm64')
454-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
454+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
455455
with:
456456
name: unit_test_result_buildmgr-${{ matrix.target }}-${{ matrix.arch }}
457457
path: ./build/test_reports/cbuildunittests-*.xml
@@ -488,7 +488,7 @@ jobs:
488488

489489
- name: Archive Cbuild Integration Tests
490490
if: always() && ((matrix.arch == 'amd64') || (startsWith(matrix.runs_on, 'ubuntu')))
491-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
491+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
492492
with:
493493
name: integ_test_result_buildmgr-${{ matrix.target }}-${{ matrix.arch }}
494494
path: ./build/test_reports/cbuildintegtests-report-${{ matrix.target }}-${{ matrix.arch }}.xml
@@ -517,7 +517,7 @@ jobs:
517517
steps:
518518
- name: Harden Runner
519519
if: ${{ !github.event.repository.private }}
520-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
520+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
521521
with:
522522
egress-policy: audit
523523
- name: Install dependencies
@@ -572,7 +572,7 @@ jobs:
572572
573573
- name: Archive unittest
574574
if: (github.event_name == 'push')
575-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
575+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
576576
with:
577577
name: unit_test_result_buildmgr-linux-amd64
578578
path: ./build/test_reports/cbuildunittests-*.xml
@@ -581,7 +581,7 @@ jobs:
581581

582582
- name: Archive Cbuild Integration Tests
583583
if: (github.event_name == 'push')
584-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
584+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
585585
with:
586586
name: integ_test_result_buildmgr-linux-amd64
587587
path: ./build/test_reports/cbuildintegtests-*.xml
@@ -619,7 +619,7 @@ jobs:
619619
attempt_delay: 5000
620620

621621
- name: Archive coverage report
622-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
622+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
623623
with:
624624
name: coverage-report-buildmgr
625625
path: |
@@ -644,7 +644,7 @@ jobs:
644644
steps:
645645
- name: Harden Runner
646646
if: ${{ !github.event.repository.private }}
647-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
647+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
648648
with:
649649
egress-policy: audit
650650

@@ -690,7 +690,7 @@ jobs:
690690
steps:
691691
- name: Harden Runner
692692
if: ${{ !github.event.repository.private }}
693-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
693+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
694694
with:
695695
egress-policy: audit
696696

@@ -725,12 +725,12 @@ jobs:
725725
steps:
726726
- name: Harden Runner
727727
if: ${{ !github.event.repository.private }}
728-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
728+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
729729
with:
730730
egress-policy: audit
731731

732732
- name: Event File
733-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
733+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
734734
with:
735735
name: Event File buildmgr
736736
path: ${{ github.event_path }}

.github/workflows/cpp-linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
- name: Harden Runner
3636
if: ${{ !github.event.repository.private }}
37-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
37+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
3838
with:
3939
egress-policy: audit
4040

@@ -71,7 +71,7 @@ jobs:
7171
7272
- name: Archive Cppcheck results
7373
if: ${{ steps.errors.outputs.value == '1' }}
74-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
74+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7575
with:
7676
name: cppcheck-report
7777
path: ./${{ env.linter_report }}

.github/workflows/global.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- name: Harden Runner
1515
if: ${{ !github.event.repository.private }}
16-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
16+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
1717
with:
1818
egress-policy: audit
1919

.github/workflows/markdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- name: Harden Runner
2323
if: ${{ !github.event.repository.private }}
24-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
24+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
2525
with:
2626
egress-policy: audit
2727

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
steps:
3939
- name: Harden Runner
4040
if: ${{ !github.event.repository.private }}
41-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
41+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
4242
with:
4343
egress-policy: audit
4444

@@ -61,7 +61,7 @@ jobs:
6161
working-directory: coverage/
6262

6363
- name: Archive merged coverage report
64-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
64+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6565
with:
6666
name: merged-coverage-report
6767
path: ./coverage/merged_coverage.info

.github/workflows/packchk.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
steps:
7272
- name: Harden Runner
7373
if: ${{ !github.event.repository.private }}
74-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
74+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
7575
with:
7676
egress-policy: audit
7777

@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: Archive packchk binary
9292
if: ${{ github.event_name != 'release' }}
93-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
93+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
9494
with:
9595
name: packchk-${{ matrix.target }}-${{ matrix.arch }}
9696
path: build/tools/packchk/packchk-*-${{ matrix.target }}-${{ matrix.arch }}.*
@@ -160,7 +160,7 @@ jobs:
160160
steps:
161161
- name: Harden Runner
162162
if: ${{ !github.event.repository.private }}
163-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
163+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
164164
with:
165165
egress-policy: audit
166166

@@ -199,7 +199,7 @@ jobs:
199199

200200
- name: Archive unit test results
201201
if: always() && (matrix.arch != 'arm64')
202-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
202+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
203203
with:
204204
name: unit_test_result_packchk-${{ matrix.target }}-${{ matrix.arch }}
205205
path: ./build/test_reports/packchkunittests-*.xml
@@ -208,7 +208,7 @@ jobs:
208208

209209
- name: Archive integration test results
210210
if: always() && (matrix.arch != 'arm64')
211-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
211+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
212212
with:
213213
name: integ_test_result_packchk-${{ matrix.target }}-${{ matrix.arch }}
214214
path: ./build/test_reports/packchkintegtests-*.xml
@@ -230,7 +230,7 @@ jobs:
230230
steps:
231231
- name: Harden Runner
232232
if: ${{ !github.event.repository.private }}
233-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
233+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
234234
with:
235235
egress-policy: audit
236236

@@ -275,7 +275,7 @@ jobs:
275275
276276
- name: Archive unit test results
277277
if: (github.event_name == 'push')
278-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
278+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
279279
with:
280280
name: unit_test_result_packchk-linux-amd64
281281
path: ./build/test_reports/packchkunittests-*.xml
@@ -284,7 +284,7 @@ jobs:
284284

285285
- name: Archive integration test results
286286
if: (github.event_name == 'push')
287-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
287+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
288288
with:
289289
name: integ_test_result_packchk-linux-amd64
290290
path: ./build/test_reports/packchkintegtests-*.xml
@@ -322,7 +322,7 @@ jobs:
322322
attempt_delay: 5000
323323

324324
- name: Archive coverage report
325-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
325+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
326326
with:
327327
name: coverage-report-packchk
328328
path: |
@@ -374,12 +374,12 @@ jobs:
374374
steps:
375375
- name: Harden Runner
376376
if: ${{ !github.event.repository.private }}
377-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
377+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
378378
with:
379379
egress-policy: audit
380380

381381
- name: Event File
382-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
382+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
383383
with:
384384
name: Event File packchk
385385
path: ${{ github.event_path }}

.github/workflows/packgen.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
steps:
6565
- name: Harden Runner
6666
if: ${{ !github.event.repository.private }}
67-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
67+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
6868
with:
6969
egress-policy: audit
7070

@@ -106,7 +106,7 @@ jobs:
106106
fi
107107
108108
- name: Archive packgen
109-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
109+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
110110
with:
111111
name: packgen-${{ matrix.target }}-${{ matrix.arch }}
112112
path: ./build/tools/packgen/${{ matrix.target }}-${{ matrix.arch }}/Release/${{ matrix.binary }}
@@ -194,7 +194,7 @@ jobs:
194194
steps:
195195
- name: Harden Runner
196196
if: ${{ !github.event.repository.private }}
197-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
197+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
198198
with:
199199
egress-policy: audit
200200

@@ -219,7 +219,7 @@ jobs:
219219

220220
- name: Archive unit tests results
221221
if: always() && (matrix.arch != 'arm64')
222-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
222+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
223223
with:
224224
name: unit_test_result_packgen-${{ matrix.target }}-${{ matrix.arch }}
225225
path: ./build/test_reports/packgenunittests-*.xml
@@ -241,7 +241,7 @@ jobs:
241241
steps:
242242
- name: Harden Runner
243243
if: ${{ !github.event.repository.private }}
244-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
244+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
245245
with:
246246
egress-policy: audit
247247

@@ -277,7 +277,7 @@ jobs:
277277
278278
- name: Archive unit tests results
279279
if: (github.event_name == 'push')
280-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
280+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
281281
with:
282282
name: unit_test_result_packgen-linux-amd64
283283
path: ./build/test_reports/packgenunittests-*.xml
@@ -315,7 +315,7 @@ jobs:
315315
attempt_delay: 5000
316316

317317
- name: Archive coverage report
318-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
318+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
319319
with:
320320
name: coverage-report-packgen
321321
path: |
@@ -331,12 +331,12 @@ jobs:
331331
steps:
332332
- name: Harden Runner
333333
if: ${{ !github.event.repository.private }}
334-
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
334+
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
335335
with:
336336
egress-policy: audit
337337

338338
- name: Event File
339-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
339+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
340340
with:
341341
name: Event File packgen
342342
path: ${{ github.event_path }}

0 commit comments

Comments
 (0)