Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 12 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,14 @@
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6

Check warning on line 43 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

ref-version-mismatch

continuous-integration.yml:43: action's hash pin has mismatched or missing version comment: points to commit d23441a48e51
with:
persist-credentials: false

- name: Install uv
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
with:
enable-cache: true

- name: Run pre-commit checks
uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
Expand All @@ -56,9 +63,10 @@
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6

Check warning on line 66 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

ref-version-mismatch

continuous-integration.yml:66: action's hash pin has mismatched or missing version comment: points to commit d23441a48e51
with:
fetch-depth: 0
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
Expand Down Expand Up @@ -127,7 +135,9 @@
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6

Check warning on line 138 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

ref-version-mismatch

continuous-integration.yml:138: action's hash pin has mismatched or missing version comment: points to commit d23441a48e51
with:
persist-credentials: false

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
Expand Down Expand Up @@ -167,7 +177,9 @@
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6

Check warning on line 180 in .github/workflows/continuous-integration.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

ref-version-mismatch

continuous-integration.yml:180: action's hash pin has mismatched or missing version comment: points to commit d23441a48e51
with:
persist-credentials: false

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ repos:
exclude: ^scripts/
- id: update-constraints
name: update-constraints
entry: ./scripts/update_constraints.sh
entry: ./scripts/update_constraints.sh --check
language: system
files: ^(pyproject\.toml|constraints-.*\.txt)$
pass_filenames: false
Expand Down
Loading
Loading