Skip to content
This repository was archived by the owner on Feb 18, 2025. It is now read-only.

Commit 5d6d5fa

Browse files
authored
pre-commit action uses deprecated Node.js version; run checks directly (#148)
1 parent a28662b commit 5d6d5fa

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/mcad-CI.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ jobs:
3838
python-version: '3.11'
3939

4040
- name: Run pre-commit checks
41-
uses: pre-commit/[email protected]
41+
run: |
42+
pip install pre-commit
43+
pre-commit run --show-diff-on-failure --color=always --all-files
4244
4345
- name: Build
4446
run: make build

.github/workflows/mcad-kueue-CI.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ jobs:
3434
python-version: '3.11'
3535

3636
- name: Run pre-commit checks
37-
uses: pre-commit/[email protected]
37+
run: |
38+
pip install pre-commit
39+
pre-commit run --show-diff-on-failure --color=always --all-files
3840
3941
- name: Build
4042
run: make build

0 commit comments

Comments
 (0)