diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 1705e80..8b21a79 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -9,32 +9,6 @@ name: 'Dependency Review' on: [pull_request] -permissions: - contents: read - -jobs: - dependency-review: - runs-on: ubuntu-latest - steps: - - name: Harden the runner (Audit all outbound calls) - uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0 - with: - egress-policy: audit - - - name: 'Checkout Repository' - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - name: 'Dependency Review' - uses: actions/dependency-review-action@f5b971718edcbb31275a1db40004592335c0e031 # v4# Dependency Review Action -# -# This Action will scan dependency manifest files that change as part of a Pull Request, -# surfacing known-vulnerable versions of the packages declared or updated in the PR. -# Once installed, if the workflow run is marked as required, -# PRs introducing known-vulnerable packages will be blocked from merging. -# -# Source repository: https://github.com/actions/dependency-review-action -name: 'Dependency Review' -on: [pull_request] - permissions: contents: read diff --git a/.github/workflows/pyright.yml b/.github/workflows/pyright.yml index 7ec8838..93600b6 100644 --- a/.github/workflows/pyright.yml +++ b/.github/workflows/pyright.yml @@ -25,31 +25,3 @@ jobs: - name: Run Pyright run: uv run pyright -name: pyright - -on: - pull_request: - branches: ["main"] - -jobs: - type-check: - runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] - - steps: - - name: Checkout repository - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd - - - name: Set up Python - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 - with: - python-version: ${{ matrix.python-version }} - - - name: Install uv - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 - - - name: Run Pyright - run: uv run pyright -