Skip to content

chore(deps): bump github/codeql-action from 3.28.18 to 3.30.3 #841

chore(deps): bump github/codeql-action from 3.28.18 to 3.30.3

chore(deps): bump github/codeql-action from 3.28.18 to 3.30.3 #841

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions: {}
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # ratchet:pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # ratchet:actions/setup-node@v4
with:
node-version-file: .node-version
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint -f @microsoft/eslint-formatter-sarif -o /tmp/lint.sarif
continue-on-error: true
- name: Strip suppressed results
run: pnpm dlx @ryanccn/sarif-strip-suppressed /tmp/lint.sarif
- name: Upload results
uses: github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # ratchet:github/codeql-action/upload-sarif@v3
with:
sarif_file: /tmp/lint.sarif
wait-for-processing: true