Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: ./.github/actions/pre-commit-setup
- uses: $/.github/actions/pre-commit-setup

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Restore the local-action path prefix

GitHub Actions requires repository-local actions to use a path beginning with ./. With $/.github/actions/pre-commit-setup, this step no longer references the existing .github/actions/pre-commit-setup/action.yml and the workflow is rejected before the pre-commit job can run on pushes or pull requests. Change the value back to ./.github/actions/pre-commit-setup.

Useful? React with 👍 / 👎.

- name: detect method
id: detect
run: |
Expand Down
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,8 @@ repos:
hooks:
- id: reuse

- repo: https://github.com/rhysd/actionlint
rev: v1.7.12
hooks:
- id: actionlint
- repo: https://github.com/zizmorcore/zizmor-pre-commit
rev: v1.29.0
rev: v1.30.0
hooks:
- id: zizmor
- repo: https://github.com/mongodb/kingfisher
Expand All @@ -50,6 +46,10 @@ repos:
hooks:
- id: rumdl
- id: rumdl-fmt
- repo: https://github.com/kjanat/actionlint
rev: v1.14.0
hooks:
- id: actionlint
ci:
autoupdate_schedule: quarterly
skip:
Expand Down
Loading