-
-
Notifications
You must be signed in to change notification settings - Fork 7
34 lines (30 loc) · 953 Bytes
/
Copy pathhol-plugin-scanner.yml
File metadata and controls
34 lines (30 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: HOL Plugin Security Scan
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: hol-plugin-scan-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
scan:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
# This action revision installs the attested plugin-scanner 3.0.145 wheel.
- uses: hashgraph-online/ai-plugin-scanner-action@7facfaefd57629e86506432eed7884d26b61eb1f # v1.2.653
with:
# Verify deliberately safety-skips command-based MCP servers; test:package covers runtime execution.
mode: scan
plugin_dir: "."
min_score: 80
fail_on_severity: high
online: "false"
pr_comment: "off"
upload_sarif: "false"