Skip to content

radar-action

Actions
Solana static analysis of anchor rust programs using radar
0.1.1
Latest
Star (10)

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

.github/workflows/radar.yml

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

Use at your own risk. for support reach out to the Auditware team at Discord.

radar-action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Solana static analysis of anchor rust programs using radar
0.1.1
Latest

radar-action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.