Skip to content

Commit a1298e6

Browse files
authored
Merge branch 'main' into outbound/projmgr-plm-status-prerelease-qualifier
2 parents 8be6208 + 7583317 commit a1298e6

File tree

14 files changed

+82
-82
lines changed

14 files changed

+82
-82
lines changed

.github/workflows/buildmgr.yml

Lines changed: 22 additions & 22 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@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
67+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
6868
with:
6969
egress-policy: audit
7070

@@ -83,7 +83,7 @@ jobs:
8383
arch: ${{ matrix.arch }}
8484

8585
- name: Archive cbuildgen
86-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
86+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
8787
with:
8888
name: cbuildgen-${{ matrix.target }}-${{ matrix.arch }}
8989
path: ./build/tools/buildmgr/cbuildgen/${{ matrix.target }}-${{ matrix.arch }}/Release/cbuildgen${{ matrix.binary_extension }}
@@ -102,7 +102,7 @@ jobs:
102102
steps:
103103
- name: Harden Runner
104104
if: ${{ !github.event.repository.private }}
105-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
105+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
106106
with:
107107
egress-policy: audit
108108

@@ -143,7 +143,7 @@ jobs:
143143
echo "retention_days=$(echo '${{ (!github.event.repository.private && (github.event_name == 'push' || github.event.schedule != '')) && '7' || '1' }}')" >> $GITHUB_OUTPUT
144144
145145
- name: Upload documentation
146-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
146+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
147147
with:
148148
name: documentation
149149
path: ./build/tools/buildmgr/docs/doxygen/output/
@@ -201,7 +201,7 @@ jobs:
201201
steps:
202202
- name: Harden Runner
203203
if: ${{ !github.event.repository.private }}
204-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
204+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
205205
with:
206206
egress-policy: audit
207207

@@ -280,15 +280,15 @@ jobs:
280280
working-directory: tools/buildmgr/cbuildgen/installer
281281

282282
- name: Archive cbuild_install.sh
283-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
283+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
284284
with:
285285
name: cbuild_install
286286
path: tools/buildmgr/cbuildgen/installer/cbuild_install.sh
287287
retention-days: ${{ needs.setup.outputs.retention_days }}
288288
if-no-files-found: error
289289

290290
- name: Archive deb package
291-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
291+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
292292
with:
293293
name: deb_package
294294
path: tools/buildmgr/cbuildgen/installer/cmsis-build*.deb
@@ -334,7 +334,7 @@ jobs:
334334
steps:
335335
- name: Harden Runner
336336
if: ${{ !github.event.repository.private }}
337-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
337+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
338338
with:
339339
egress-policy: audit
340340

@@ -365,7 +365,7 @@ jobs:
365365
submodules: true
366366

367367
- name: Cache ARM GCC
368-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
368+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
369369
with:
370370
key: "${{ matrix.arm_gcc_install_base }}/${{ matrix.installer_name }}"
371371
path: ${{ matrix.installer_name }}
@@ -388,7 +388,7 @@ jobs:
388388
unzip -o $Env:installer_name
389389
390390
- name: Cache CMSIS Pack
391-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
391+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
392392
env:
393393
CACHE_NAME: cmsis_pack
394394
with:
@@ -426,7 +426,7 @@ jobs:
426426

427427
- name: Archive unittest
428428
if: always() && (matrix.arch != 'arm64')
429-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
429+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
430430
with:
431431
name: unit_test_result_buildmgr-${{ matrix.target }}-${{ matrix.arch }}
432432
path: ./build/test_reports/cbuildunittests-*.xml
@@ -463,7 +463,7 @@ jobs:
463463

464464
- name: Archive Cbuild Integration Tests
465465
if: always() && ((matrix.arch == 'amd64') || (startsWith(matrix.runs_on, 'ubuntu')))
466-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
466+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
467467
with:
468468
name: integ_test_result_buildmgr-${{ matrix.target }}-${{ matrix.arch }}
469469
path: ./build/test_reports/cbuildintegtests-report-${{ matrix.target }}-${{ matrix.arch }}.xml
@@ -493,7 +493,7 @@ jobs:
493493
steps:
494494
- name: Harden Runner
495495
if: ${{ !github.event.repository.private }}
496-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
496+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
497497
with:
498498
egress-policy: audit
499499
- name: Install dependencies
@@ -514,7 +514,7 @@ jobs:
514514
run: mkdir build
515515

516516
- name: Cache ARM GCC
517-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
517+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
518518
with:
519519
key: "${{ env.arm_gcc_install_base }}/${{ env.installer_name }}"
520520
path: ${{ env.installer_name }}
@@ -525,7 +525,7 @@ jobs:
525525
tar -xvf ${{ env.installer_name }}
526526
527527
- name: Cache CMSIS Pack
528-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
528+
uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
529529
env:
530530
CACHE_NAME: cmsis_pack
531531
with:
@@ -548,7 +548,7 @@ jobs:
548548
549549
- name: Archive unittest
550550
if: (github.event_name == 'push')
551-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
551+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
552552
with:
553553
name: unit_test_result_buildmgr-linux-amd64
554554
path: ./build/test_reports/cbuildunittests-*.xml
@@ -557,7 +557,7 @@ jobs:
557557

558558
- name: Archive Cbuild Integration Tests
559559
if: (github.event_name == 'push')
560-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
560+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
561561
with:
562562
name: integ_test_result_buildmgr-linux-amd64
563563
path: ./build/test_reports/cbuildintegtests-*.xml
@@ -595,7 +595,7 @@ jobs:
595595
attempt_delay: 5000
596596

597597
- name: Archive coverage report
598-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
598+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
599599
with:
600600
name: coverage-report-buildmgr
601601
path: |
@@ -619,7 +619,7 @@ jobs:
619619
steps:
620620
- name: Harden Runner
621621
if: ${{ !github.event.repository.private }}
622-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
622+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
623623
with:
624624
egress-policy: audit
625625

@@ -664,7 +664,7 @@ jobs:
664664
steps:
665665
- name: Harden Runner
666666
if: ${{ !github.event.repository.private }}
667-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
667+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
668668
with:
669669
egress-policy: audit
670670

@@ -699,12 +699,12 @@ jobs:
699699
steps:
700700
- name: Harden Runner
701701
if: ${{ !github.event.repository.private }}
702-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
702+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
703703
with:
704704
egress-policy: audit
705705

706706
- name: Event File
707-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
707+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
708708
with:
709709
name: Event File buildmgr
710710
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@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
42+
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
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@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
58+
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10

.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@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
37+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.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@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
74+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.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
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Harden Runner
1414
if: ${{ !github.event.repository.private }}
15-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
15+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
1616
with:
1717
egress-policy: audit
1818

.github/workflows/markdown.yml

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@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
16+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
1717
with:
1818
egress-policy: audit
1919

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- name: Harden Runner
3838
if: ${{ !github.event.repository.private }}
39-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
39+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
4040
with:
4141
egress-policy: audit
4242

@@ -59,7 +59,7 @@ jobs:
5959
working-directory: coverage/
6060

6161
- name: Archive merged coverage report
62-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
62+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
6363
with:
6464
name: merged-coverage-report
6565
path: ./coverage/merged_coverage.info

.github/workflows/packchk.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
steps:
6363
- name: Harden Runner
6464
if: ${{ !github.event.repository.private }}
65-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
65+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
6666
with:
6767
egress-policy: audit
6868

@@ -81,7 +81,7 @@ jobs:
8181

8282
- name: Archive packchk binary
8383
if: ${{ github.event_name != 'release' }}
84-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
84+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
8585
with:
8686
name: packchk-${{ matrix.target }}-${{ matrix.arch }}
8787
path: build/tools/packchk/packchk-*-${{ matrix.target }}-${{ matrix.arch }}.*
@@ -108,7 +108,7 @@ jobs:
108108
steps:
109109
- name: Harden Runner
110110
if: ${{ !github.event.repository.private }}
111-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
111+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
112112
with:
113113
egress-policy: audit
114114

@@ -147,7 +147,7 @@ jobs:
147147

148148
- name: Archive unit test results
149149
if: always() && (matrix.arch != 'arm64')
150-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
150+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
151151
with:
152152
name: unit_test_result_packchk-${{ matrix.target }}-${{ matrix.arch }}
153153
path: ./build/test_reports/packchkunittests-*.xml
@@ -156,7 +156,7 @@ jobs:
156156

157157
- name: Archive integration test results
158158
if: always() && (matrix.arch != 'arm64')
159-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
159+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
160160
with:
161161
name: integ_test_result_packchk-${{ matrix.target }}-${{ matrix.arch }}
162162
path: ./build/test_reports/packchkintegtests-*.xml
@@ -178,7 +178,7 @@ jobs:
178178
steps:
179179
- name: Harden Runner
180180
if: ${{ !github.event.repository.private }}
181-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
181+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
182182
with:
183183
egress-policy: audit
184184

@@ -224,7 +224,7 @@ jobs:
224224
225225
- name: Archive unit test results
226226
if: (github.event_name == 'push')
227-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
227+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
228228
with:
229229
name: unit_test_result_packchk-linux-amd64
230230
path: ./build/test_reports/packchkunittests-*.xml
@@ -233,7 +233,7 @@ jobs:
233233

234234
- name: Archive integration test results
235235
if: (github.event_name == 'push')
236-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
236+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
237237
with:
238238
name: integ_test_result_packchk-linux-amd64
239239
path: ./build/test_reports/packchkintegtests-*.xml
@@ -271,7 +271,7 @@ jobs:
271271
attempt_delay: 5000
272272

273273
- name: Archive coverage report
274-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
274+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
275275
with:
276276
name: coverage-report-packchk
277277
path: |
@@ -322,12 +322,12 @@ jobs:
322322
steps:
323323
- name: Harden Runner
324324
if: ${{ !github.event.repository.private }}
325-
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
325+
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
326326
with:
327327
egress-policy: audit
328328

329329
- name: Event File
330-
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
330+
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
331331
with:
332332
name: Event File packchk
333333
path: ${{ github.event_path }}

0 commit comments

Comments
 (0)