Skip to content

GitHub Action for radar - a static analysis tool for anchor and rust programs.

License

Notifications You must be signed in to change notification settings

Auditware/radar-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Radar GitHub Action

The GitHub action to add radar into your workflow.

For more information check the main repository: https://github.com/auditware/radar

Usage

name: Radar Static Analysis
on: [push]
jobs:
  analyze:
    runs-on: ubuntu-latest
    permissions:
      security-events: write
      actions: read
      contents: read
      
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
        with:
          submodules: 'recursive'
      
      - name: Run radar
        id: radar
        uses: auditware/radar-action@main
        with:
          path: "."
          ignore: "low"
  
      - name: Upload SARIF file
        uses: github/codeql-action/upload-sarif@v3
        with:
          sarif_file: output.sarif

Inputs

Input Description Required Default
path Path of the folder to be scanned. true .
ignore Severities to be ignored (e.g. low,medium) false

Experimental, use at your own risk. for support reach out to the Audit Wizard Discord.