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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
node-version: [22]

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

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest

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

- name: Use Node.js 22
uses: actions/setup-node@v6
Expand All @@ -70,7 +70,7 @@ jobs:
run: npm run test:coverage

- name: Upload to Codecov
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@v7
with:
files: coverage/lcov.info
fail_ci_if_error: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Secrets (gitleaks)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # full history so gitleaks can scan every commit
- name: Install gitleaks
Expand All @@ -39,7 +39,7 @@ jobs:
name: Dependencies (osv-scanner)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install osv-scanner
run: |
curl -sSL https://github.com/google/osv-scanner/releases/download/v2.3.8/osv-scanner_linux_amd64 \
Expand All @@ -52,13 +52,13 @@ jobs:
name: Vulns + secrets (trivy)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install trivy
run: |
curl -sSL https://github.com/aquasecurity/trivy/releases/download/v0.71.0/trivy_0.71.0_Linux-64bit.tar.gz \
| tar -xz -C /usr/local/bin trivy
- name: Cache trivy vulnerability DB
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.cache/trivy
key: trivy-db-${{ github.run_id }}
Expand All @@ -81,7 +81,7 @@ jobs:
name: Static analysis (semgrep, advisory)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
# Advisory: semgrep findings surface in the log but never fail the build.
# The two excluded rules are inherently noisy for this codebase — it
# legitimately joins validated IDs into paths (guarded by allowlist /
Expand Down