Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true

permissions: read-all

Check warning on line 15 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

build.yml:15: overly broad permissions: uses read-all permissions

jobs:
cmake:
Expand Down Expand Up @@ -61,7 +61,7 @@
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
..
working-directory: build/
- run: cmake --build . --parallel ${{ env.NUM_CORES }}

Check failure on line 64 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/template-injection

code injection via template expansion: may expand into attacker-controllable code

Check failure on line 64 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

template-injection

build.yml:64: code injection via template expansion: may expand into attacker-controllable code
working-directory: build/
- if: always()
run: |
Expand All @@ -69,9 +69,9 @@
# Join one-regex-per-line list (same alternation as a single POSIX ERE).
# macOS doesn't support long options.
FLAKY="$(paste -s -d '|' ../flaky_tests.txt)"
ctest --parallel ${{ env.NUM_CORES }} --output-on-failure \

Check failure on line 72 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/template-injection

code injection via template expansion: may expand into attacker-controllable code

Check failure on line 72 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

template-injection

build.yml:72: code injection via template expansion: may expand into attacker-controllable code
--exclude-regex "${FLAKY}"
ctest --parallel ${{ env.NUM_CORES }} --output-on-failure \

Check failure on line 74 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/template-injection

code injection via template expansion: may expand into attacker-controllable code

Check failure on line 74 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

template-injection

build.yml:74: code injection via template expansion: may expand into attacker-controllable code
--tests-regex "${FLAKY}" \
--repeat until-pass:3
working-directory: build/
Expand Down Expand Up @@ -210,7 +210,7 @@
with:
fetch-tags: true
persist-credentials: false
- uses: pypa/cibuildwheel@294735312765b09d24a2fbec22660ce817587d55 # v4.1.0
- uses: pypa/cibuildwheel@4726cd35bb13f7bde50cf2761f2499ac7b3aa32c # v4.1.1
with:
package-dir: ./
output-dir: dist/
Expand Down
Loading