File tree Expand file tree Collapse file tree 11 files changed +14
-14
lines changed Expand file tree Collapse file tree 11 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ jobs:
185185 mkdir -p ${{env.COVERAGE_DIR}}
186186 mv ./$COVERAGE_FILE_NAME ${{env.COVERAGE_DIR}}
187187
188- - uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
188+ - uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
189189 if : ${{ matrix.build_type == 'Debug' && matrix.compiler.c == 'gcc' }}
190190 with :
191191 name : ${{env.COVERAGE_NAME}}-${{matrix.os}}-shared-${{matrix.shared_library}}
Original file line number Diff line number Diff line change 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@40156d6074bf731adb169cfb8234954971dbc487 # v1.37.1
60+ uses : crate-ci/typos@07d900b8fa1097806b8adb6391b0d3e0ac2fdea7 # v1.39.0
6161 with :
6262 config : ./.github/workflows/.spellcheck-conf.toml
6363
Original file line number Diff line number Diff line change 4141 python-version : " 3.10"
4242
4343 - name : Initialize CodeQL
44- uses : github/codeql-action/init@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
44+ uses : github/codeql-action/init@0499de31b99561a6d14a36a5f662c2a54f91beee # v3.29.5
4545 with :
4646 languages : cpp
4747 trap-caching : false
@@ -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@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
111+ uses : github/codeql-action/analyze@0499de31b99561a6d14a36a5f662c2a54f91beee # v3.29.5
112112
113113 - name : " [Win] Prepare vcpkg cache"
114114 if : matrix.os == 'windows-latest' && steps.cache.outputs.cache-hit != 'true'
Original file line number Diff line number Diff line change 3232 sudo apt-get install -y lcov
3333
3434 - name : Download all coverage artifacts
35- uses : actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5 .0.0
35+ uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6 .0.0
3636 with :
3737 pattern : exports-coverage-*
3838 path : coverage
5151 echo "COV_OUT=$(tail -n1 output.txt | grep -oP "lines[.]+: [\d.]+%" | cut -d ' ' -f2 | tr -d '%')" >> $GITHUB_OUTPUT
5252
5353 - name : Upload coverage report
54- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
54+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5555 with :
5656 name : coverage_html_report
5757 path : coverage/coverage_report
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ jobs:
142142 mkdir -p ${{env.COVERAGE_DIR}}
143143 mv ./$COVERAGE_FILE_NAME ${{env.COVERAGE_DIR}}
144144
145- - uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
145+ - uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
146146 if : ${{ matrix.build_type == 'Debug' }}
147147 with :
148148 name : ${{env.COVERAGE_NAME}}-shared-${{matrix.shared_library}}
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ jobs:
184184 mv ./$COVERAGE_FILE_NAME ${{env.COVERAGE_DIR}}
185185
186186 - name : " [Lin] Upload coverage"
187- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
187+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
188188 if : ${{ matrix.os == 'Ubuntu' }}
189189 with :
190190 name : ${{env.COVERAGE_NAME}}-shared-${{matrix.shared_library}}
Original file line number Diff line number Diff line change 8181 mkdir -p ${{env.COVERAGE_DIR}}
8282 mv ./$COVERAGE_FILE_NAME ${{env.COVERAGE_DIR}}
8383
84- - uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
84+ - uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
8585 if : ${{ matrix.build_type == 'Debug' && matrix.os == 'ubuntu-22.04' }}
8686 with :
8787 name : ${{env.COVERAGE_NAME}}-${{matrix.os}}-shared-${{matrix.shared_library}}
Original file line number Diff line number Diff line change 8787 mkdir -p ${{env.COVERAGE_DIR}}
8888 mv ./$COVERAGE_FILE_NAME ${{env.COVERAGE_DIR}}
8989
90- - uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
90+ - uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
9191 if : ${{ matrix.build_type == 'Debug' }}
9292 with :
9393 name : ${{env.COVERAGE_NAME}}-proxy_lib_pool-${{matrix.proxy_lib_pool}}
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ jobs:
149149 done
150150 ls -al ./coverage
151151
152- - uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
152+ - uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
153153 with :
154154 name : exports-coverage-qemu-${{matrix.os}}
155155 path : coverage
Original file line number Diff line number Diff line change 3838 cat trivy-results.sarif
3939
4040 - name : Upload results
41- uses : github/codeql-action/upload-sarif@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
41+ uses : github/codeql-action/upload-sarif@0499de31b99561a6d14a36a5f662c2a54f91beee # v3.29.5
4242 with :
4343 sarif_file : ' trivy-results.sarif'
You can’t perform that action at this time.
0 commit comments