Skip to content

Commit 9a8203b

Browse files
authored
Merge branch 'main' into resolve-security-findings
2 parents 38ad704 + 579301e commit 9a8203b

9 files changed

Lines changed: 44 additions & 44 deletions

File tree

.github/workflows/buildmgr.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
fi
104104
105105
- name: Archive cbuildgen
106-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
106+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
107107
with:
108108
name: cbuildgen-${{ matrix.target }}-${{ matrix.arch }}
109109
path: ./build/tools/buildmgr/cbuildgen/${{ matrix.target }}-${{ matrix.arch }}/Release/cbuildgen${{ matrix.binary_extension }}
@@ -165,7 +165,7 @@ jobs:
165165
echo "retention_days=$(echo '${{ (!github.event.repository.private && (github.event_name == 'push' || github.event.schedule != '')) && '7' || '1' }}')" >> $GITHUB_OUTPUT
166166
167167
- name: Upload documentation
168-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
168+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
169169
with:
170170
name: documentation
171171
path: ./build/tools/buildmgr/docs/doxygen/output/
@@ -304,15 +304,15 @@ jobs:
304304
working-directory: tools/buildmgr/cbuildgen/installer
305305

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

314314
- name: Archive deb package
315-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
315+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
316316
with:
317317
name: deb_package
318318
path: tools/buildmgr/cbuildgen/installer/cmsis-build*.deb
@@ -448,7 +448,7 @@ jobs:
448448

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

486486
- name: Archive Cbuild Integration Tests
487487
if: always() && ((matrix.arch == 'amd64') || (startsWith(matrix.runs_on, 'ubuntu')))
488-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
488+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
489489
with:
490490
name: integ_test_result_buildmgr-${{ matrix.target }}-${{ matrix.arch }}
491491
path: ./build/test_reports/cbuildintegtests-report-${{ matrix.target }}-${{ matrix.arch }}.xml
@@ -569,7 +569,7 @@ jobs:
569569
570570
- name: Archive unittest
571571
if: (github.event_name == 'push')
572-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
572+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
573573
with:
574574
name: unit_test_result_buildmgr-linux-amd64
575575
path: ./build/test_reports/cbuildunittests-*.xml
@@ -578,7 +578,7 @@ jobs:
578578

579579
- name: Archive Cbuild Integration Tests
580580
if: (github.event_name == 'push')
581-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
581+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
582582
with:
583583
name: integ_test_result_buildmgr-linux-amd64
584584
path: ./build/test_reports/cbuildintegtests-*.xml
@@ -616,7 +616,7 @@ jobs:
616616
attempt_delay: 5000
617617

618618
- name: Archive coverage report
619-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
619+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
620620
with:
621621
name: coverage-report-buildmgr
622622
path: |
@@ -727,7 +727,7 @@ jobs:
727727
egress-policy: audit
728728

729729
- name: Event File
730-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
730+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
731731
with:
732732
name: Event File buildmgr
733733
path: ${{ github.event_path }}

.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@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/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: Archive packchk binary
8989
if: ${{ github.event_name != 'release' }}
90-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
90+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
9191
with:
9292
name: packchk-${{ matrix.target }}-${{ matrix.arch }}
9393
path: build/tools/packchk/packchk-*-${{ matrix.target }}-${{ matrix.arch }}.*
@@ -196,7 +196,7 @@ jobs:
196196

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

206206
- name: Archive integration test results
207207
if: always() && (matrix.arch != 'arm64')
208-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
208+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
209209
with:
210210
name: integ_test_result_packchk-${{ matrix.target }}-${{ matrix.arch }}
211211
path: ./build/test_reports/packchkintegtests-*.xml
@@ -272,7 +272,7 @@ jobs:
272272
273273
- name: Archive unit test results
274274
if: (github.event_name == 'push')
275-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
275+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
276276
with:
277277
name: unit_test_result_packchk-linux-amd64
278278
path: ./build/test_reports/packchkunittests-*.xml
@@ -281,7 +281,7 @@ jobs:
281281

282282
- name: Archive integration test results
283283
if: (github.event_name == 'push')
284-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
284+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
285285
with:
286286
name: integ_test_result_packchk-linux-amd64
287287
path: ./build/test_reports/packchkintegtests-*.xml
@@ -319,7 +319,7 @@ jobs:
319319
attempt_delay: 5000
320320

321321
- name: Archive coverage report
322-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
322+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
323323
with:
324324
name: coverage-report-packchk
325325
path: |
@@ -376,7 +376,7 @@ jobs:
376376
egress-policy: audit
377377

378378
- name: Event File
379-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
379+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
380380
with:
381381
name: Event File packchk
382382
path: ${{ github.event_path }}

.github/workflows/packgen.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
fi
104104
105105
- name: Archive packgen
106-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
106+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
107107
with:
108108
name: packgen-${{ matrix.target }}-${{ matrix.arch }}
109109
path: ./build/tools/packgen/${{ matrix.target }}-${{ matrix.arch }}/Release/${{ matrix.binary }}
@@ -216,7 +216,7 @@ jobs:
216216

217217
- name: Archive unit tests results
218218
if: always() && (matrix.arch != 'arm64')
219-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
219+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
220220
with:
221221
name: unit_test_result_packgen-${{ matrix.target }}-${{ matrix.arch }}
222222
path: ./build/test_reports/packgenunittests-*.xml
@@ -274,7 +274,7 @@ jobs:
274274
275275
- name: Archive unit tests results
276276
if: (github.event_name == 'push')
277-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
277+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
278278
with:
279279
name: unit_test_result_packgen-linux-amd64
280280
path: ./build/test_reports/packgenunittests-*.xml
@@ -312,7 +312,7 @@ jobs:
312312
attempt_delay: 5000
313313

314314
- name: Archive coverage report
315-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
315+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
316316
with:
317317
name: coverage-report-packgen
318318
path: |
@@ -333,7 +333,7 @@ jobs:
333333
egress-policy: audit
334334

335335
- name: Event File
336-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
336+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
337337
with:
338338
name: Event File packgen
339339
path: ${{ github.event_path }}

.github/workflows/projmgr.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
fi
108108
109109
- name: Archive projmgr
110-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
110+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
111111
with:
112112
name: projmgr-${{ matrix.target }}-${{ matrix.arch }}
113113
path: ./build/tools/projmgr/${{ matrix.target }}-${{ matrix.arch }}/Release/${{ matrix.binary }}
@@ -116,7 +116,7 @@ jobs:
116116

117117
- name: Archive projmgr schemas
118118
if: matrix.arch == 'amd64' && matrix.target == 'linux'
119-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
119+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
120120
with:
121121
name: projmgr-schemas
122122
path: ./tools/projmgr/schemas
@@ -125,7 +125,7 @@ jobs:
125125

126126
- name: Archive projmgr templates
127127
if: matrix.arch == 'amd64' && matrix.target == 'linux'
128-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
128+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
129129
with:
130130
name: projmgr-templates
131131
path: ./tools/projmgr/templates
@@ -180,7 +180,7 @@ jobs:
180180

181181
- name: Archive projmgr swig python libs
182182
if: always() && matrix.pyswig
183-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
183+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
184184
with:
185185
name: projmgr-swig-python-${{ matrix.target }}-${{ matrix.arch }}
186186
path: |
@@ -191,7 +191,7 @@ jobs:
191191

192192
- name: Archive projmgr swig go libs
193193
if: always() && matrix.goswig
194-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
194+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
195195
with:
196196
name: projmgr-swig-go-${{ matrix.target }}-${{ matrix.arch }}
197197
path: |
@@ -399,7 +399,7 @@ jobs:
399399

400400
- name: Archive unit tests results
401401
if: always() && (matrix.arch != 'arm64')
402-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
402+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
403403
with:
404404
name: unittest-${{ matrix.target }}-${{ matrix.arch }}
405405
path: ./build/Testing/Temporary/LastTest.log
@@ -408,7 +408,7 @@ jobs:
408408

409409
- name: Archive gtest report
410410
if: always() && (matrix.arch != 'arm64')
411-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
411+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
412412
with:
413413
name: unit_test_result_projmgr-${{ matrix.target }}-${{ matrix.arch }}
414414
path: ./build/test_reports/projmgrunittests-*.xml
@@ -466,7 +466,7 @@ jobs:
466466
467467
- name: Archive test report
468468
if: (github.event_name == 'push')
469-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
469+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
470470
with:
471471
name: unit_test_result_projmgr-linux-amd64
472472
path: ./build/test_reports/projmgrunittests-*.xml
@@ -504,7 +504,7 @@ jobs:
504504
attempt_delay: 5000
505505

506506
- name: Archive coverage report
507-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
507+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
508508
with:
509509
name: coverage-report-projmgr
510510
path: |
@@ -525,7 +525,7 @@ jobs:
525525
egress-policy: audit
526526

527527
- name: Event File
528-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
528+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
529529
with:
530530
name: Event File projmgr
531531
path: ${{ github.event_path }}

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5959
# format to the repository Actions tab.
6060
- name: "Upload artifact"
61-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
61+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6262
with:
6363
name: SARIF file
6464
path: results.sarif

.github/workflows/svdconv.yml

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

7979
- name: Archive svdconv binary
8080
if: ${{ github.event_name != 'release' || (needs.setup.outputs.nightly == 'true')}}
81-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
81+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
8282
with:
8383
name: svdconv-${{ matrix.target }}-${{ matrix.arch }}
8484
path: ./build/tools/svdconv/SVDConv/svdconv-*-${{ matrix.target }}-${{ matrix.arch }}.*
@@ -186,7 +186,7 @@ jobs:
186186

187187
- name: Archive unit test results
188188
if: always() && (matrix.arch != 'arm64')
189-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
189+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
190190
with:
191191
name: unit_test_result_svdconv-${{ matrix.target }}-${{ matrix.arch }}
192192
path: ./build/test_reports/svdconvunittests-*.xml
@@ -195,7 +195,7 @@ jobs:
195195

196196
- name: Archive integration test results
197197
if: always() && (matrix.arch != 'arm64')
198-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
198+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
199199
with:
200200
name: integ_test_result_svdconv-${{ matrix.target }}-${{ matrix.arch }}
201201
path: ./build/test_reports/svdconvintegtests-*.xml
@@ -263,7 +263,7 @@ jobs:
263263
264264
- name: Archive unit test results
265265
if: (github.event_name == 'push')
266-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
266+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
267267
with:
268268
name: unit_test_report_svdconv-linux-amd64
269269
path: ./build/test_reports/svdconvunittests-*.xml
@@ -272,7 +272,7 @@ jobs:
272272

273273
- name: Archive integration test results
274274
if: (github.event_name == 'push')
275-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
275+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
276276
with:
277277
name: integ_test_report_svdconv-linux-amd64
278278
path: ./build/test_reports/svdconvintegtests-*.xml
@@ -317,7 +317,7 @@ jobs:
317317
attempt_delay: 5000
318318

319319
- name: Archive coverage report
320-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
320+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
321321
with:
322322
name: coverage-report-svdconv
323323
path: |
@@ -374,7 +374,7 @@ jobs:
374374
egress-policy: audit
375375

376376
- name: Event File
377-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
377+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
378378
with:
379379
name: Event File svdconv
380380
path: ${{ github.event_path }}

.github/workflows/test_libs.yml

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

8686
- name: Archive libs unittest reports
8787
if: always() && (matrix.arch != 'arm64')
88-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
88+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
8989
with:
9090
name: unit_test_result_test_libs-${{ matrix.target }}-${{ matrix.arch }}
9191
path: ./build/test_reports/*${{ matrix.target }}-${{ matrix.arch }}.xml
@@ -98,7 +98,7 @@ jobs:
9898
runs-on: ubuntu-22.04
9999
steps:
100100
- name: Event File
101-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
101+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
102102
with:
103103
name: Event File test_libs
104104
path: ${{ github.event_path }}

0 commit comments

Comments
 (0)