Skip to content

chore(deps): bump the npm group across 1 directory with 68 updates #669

chore(deps): bump the npm group across 1 directory with 68 updates

chore(deps): bump the npm group across 1 directory with 68 updates #669

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: DevSkim
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: "37 1 * * 2"
concurrency:
group: devskim-${{ github.ref }}
cancel-in-progress: false
jobs:
lint:
name: DevSkim
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
with:
egress-policy: audit
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Run DevSkim scanner
uses: microsoft/DevSkim-Action@a6b6966a33b497cd3ae2ebc406edf8f4cc2feec6 # v1.0.15
with:
directory-to-scan: .
should-scan-archives: false
output-filename: devskim-results.sarif
output-directory: .
ignore-globs: "**/.git/**,**/bin/**,**/*.fit,**/*.png,**/*.jpg,**/*.jpeg,**/*.ico,**/*.icns,**/*.svg,**/*.pdf"
- name: Debug - List files in workspace
run: |
echo "Listing all files in workspace:"
find . -type f | sort
echo "Showing first 5 lines of each file (if text):"
for f in $(find . -type f); do
echo "==== $f ===="
head -n 5 "$f" || echo "Binary or unreadable file"
done
- name: Upload DevSkim SARIF as artifact
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: devskim-results
path: devskim-results.sarif
- name: Upload DevSkim scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@60168efe1c415ce0f5521ea06d5c2062adbeed1b # v3.28.17
with:
sarif_file: devskim-results.sarif