File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ on: # yamllint disable-line rule:truthy
2929 # │ │ │ │ │
3030 # │ │ │ │ │
3131 # * * * * *
32- - cron : ' 16 20 * * 0'
32+ - cron : " 16 20 * * 0"
3333
3434jobs :
3535 analyze :
4040 # - https://gh.io/using-larger-runners (GitHub.com only)
4141 # Consider using larger runners or machines with greater resources
4242 # for possible analysis time improvements.
43- runs-on :
44- ${{ (matrix.language == 'swift' && 'macos-14') || 'ubuntu-24.04' }}
43+ runs-on : ${{ (matrix.language == 'swift' && 'macos-14') || 'ubuntu-24.04' }}
4544 permissions :
4645 # required for all workflows
4746 security-events : write
7170 # yamllint enable rule:line-length
7271 steps :
7372 - name : Checkout repository
74- uses : actions/checkout@v6
73+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
7574
7675 - name : Check Tools
7776 run : |
Original file line number Diff line number Diff line change 11---
2-
32name : gitleaks
43
54on : # yamllint disable-line rule:truthy
2221 name : gitleaks
2322 runs-on : ubuntu-24.04
2423 steps :
25- - uses : actions/checkout@v6
24+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2625 with :
2726 fetch-depth : 0
2827 - uses : gitleaks/gitleaks-action@v2
Original file line number Diff line number Diff line change 1616 # Directory where build-wrapper output will be placed
1717 BUILD_WRAPPER_OUT_DIR : build
1818 steps :
19- - uses : actions/checkout@v6
19+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2020 with :
2121 # Shallow clones should be disabled for a better relevancy of analysis
2222 fetch-depth : 0
4747 export VCPKG_ROOT=/usr/local/share/vcpkg
4848 build-wrapper-linux-x86-64 --out-dir ${{ env.BUILD_WRAPPER_OUT_DIR }} make build
4949 # yamllint enable rule:line-length
50-
5150 - name : Run tests to generate coverage statistics
5251 run : |
5352 make coverage
You can’t perform that action at this time.
0 commit comments