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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
type: boolean
default: false

permissions: read-all

Check warning on line 43 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

ci.yml:43: overly broad permissions: uses read-all permissions

concurrency:
cancel-in-progress: true
Expand Down Expand Up @@ -91,7 +91,7 @@
CIBW_BUILD_VERBOSITY: ${{inputs.debug && 1 || ''}}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
cache: pip
python-version: '3.11'
Expand All @@ -109,7 +109,7 @@
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
cache: pip
python-version: '3.11'
Expand All @@ -133,7 +133,7 @@
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: bazel-contrib/setup-bazel@c5acdfb288317d0b5c0bbd7a396a3dc868bb0f86 # v1

Check warning on line 136 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

ref-version-mismatch

ci.yml:136: action's hash pin has mismatched or missing version comment: points to unknown ref
with:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
Expand Down Expand Up @@ -195,11 +195,11 @@
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
cache: pip
python-version: '3.11'
- uses: bazel-contrib/setup-bazel@c5acdfb288317d0b5c0bbd7a396a3dc868bb0f86 # v1

Check warning on line 202 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

ref-version-mismatch

ci.yml:202: action's hash pin has mismatched or missing version comment: points to unknown ref
with:
disk-cache: ${{ github.workflow }}
repository-cache: true
Expand All @@ -222,11 +222,11 @@
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
cache: pip
python-version: '3.11'
- uses: bazel-contrib/setup-bazel@c5acdfb288317d0b5c0bbd7a396a3dc868bb0f86 # v1

Check warning on line 229 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

ref-version-mismatch

ci.yml:229: action's hash pin has mismatched or missing version comment: points to unknown ref
with:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
Expand Down Expand Up @@ -263,7 +263,7 @@
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
sparse-checkout: setup.py
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
cache: pip
python-version: '3.11'
Expand All @@ -273,7 +273,7 @@
# For efficiency, test just one wheel for each platform.
pattern: '*cp311*'
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1

Check warning on line 276 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

ref-version-mismatch

ci.yml:276: action's hash pin has mismatched or missing version comment: points to unknown ref
with:
repository-url: ${{env.testpypi_endpoint_url}}
packages-dir: dist-chromobius/
Expand Down Expand Up @@ -314,7 +314,7 @@
pattern: dist-chromobius-*
merge-multiple: true
- run: pwd && ls -lR dist-chromobius
- uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1

Check warning on line 317 in .github/workflows/ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

ref-version-mismatch

ci.yml:317: action's hash pin has mismatched or missing version comment: points to unknown ref
with:
packages-dir: dist-chromobius/
verify-metadata: ${{inputs.debug}}
Expand Down
Loading