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/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Run Benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Code Quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
name: Security Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Dependency Review
uses: actions/dependency-review-action@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Coverage Report
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
name: Code Complexity Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
name: Diff Quality Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -103,7 +103,7 @@ jobs:

- name: Comment on PR
if: always()
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const fs = require('fs');
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pr-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Auto-label PR
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
- uses: actions/labeler@v6
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler.yml
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -68,7 +68,7 @@ jobs:

- name: Comment if tests are missing
if: steps.code_changes.outputs.has_code_changes == 'true' && steps.test_changes.outputs.has_test_changes == 'false'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
github.rest.issues.createComment({
Expand All @@ -84,12 +84,12 @@ jobs:
# runs-on: ubuntu-latest
# if: github.event_name == 'pull_request'
# steps:
# - uses: actions/checkout@v5
# - uses: actions/checkout@v6
# with:
# fetch-depth: 0
#
# - name: Check PR title
# uses: amannn/action-semantic-pull-request@v5
# uses: amannn/action-semantic-pull-request@v6
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Run Release Drafter
uses: release-drafter/release-drafter@v6
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools<69", "wheel"]
requires = ["setuptools<81", "wheel"]
build-backend = "setuptools.build_meta"

[project]
Expand Down Expand Up @@ -35,7 +35,7 @@ dependencies = [
dev = [
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"black==24.10.0",
"black==26.1.0",
"mypy>=1.10.0",
"ruff>=0.9.0",
"invoke>=2.0.0",
Expand Down
12 changes: 4 additions & 8 deletions tests/unit/packages/test_component_detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,15 +396,13 @@ def test_detect_skill_directory(self, temp_project: Path) -> None:
skills_dir = temp_project / ".claude" / "skills"
skill_dir = skills_dir / "my-skill"
skill_dir.mkdir(parents=True)
(skill_dir / "SKILL.md").write_text(
"""---
(skill_dir / "SKILL.md").write_text("""---
name: my-skill
description: A test skill
---
# My Skill
Instructions for the skill.
"""
)
""")

detector = ComponentDetector(temp_project)
result = detector.detect_all()
Expand Down Expand Up @@ -448,14 +446,12 @@ def test_detect_workflow_file(self, temp_project: Path) -> None:
"""Test detection of workflow file."""
workflows_dir = temp_project / ".windsurf" / "workflows"
workflows_dir.mkdir(parents=True)
(workflows_dir / "deploy.md").write_text(
"""---
(workflows_dir / "deploy.md").write_text("""---
description: Deploy workflow
---
# Deploy Workflow
Steps for deployment.
"""
)
""")

detector = ComponentDetector(temp_project)
result = detector.detect_all()
Expand Down
Loading