Skip to content

test scanwise #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 2 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
30 changes: 30 additions & 0 deletions .github/workflows/scanwise.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# .github/workflows/scanwise.yml
name: 'Scanwise Analysis'

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
scanwise:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
issues: write
steps:
- name: Scanwise Scan
uses: VIDADv1/scanwise@v1

Check warning

Code scanning / CodeQL

Unpinned tag for a non-immutable Action in workflow Medium

Unpinned 3rd party Action 'Scanwise Analysis' step
Uses Step
uses 'VIDADv1/scanwise' with ref 'v1', not a pinned commit hash
with:
reports-scopes: '["overall", "new"]'
reports-extensions: '["md","pdf","html","json"]'
reports-retention-days: '1000d'
generate-pr-comment: true
pre-scan-script: |
echo "Running pre-scan setup..."
# Add your custom setup commands here
Loading