mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
20 lines
700 B
YAML
20 lines
700 B
YAML
name: 'Code Scanning : Upload SARIF'
|
|
description: 'Upload the analysis results'
|
|
author: 'GitHub'
|
|
inputs:
|
|
sarif_file:
|
|
description: The SARIF file or directory of SARIF files to be uploaded. Each upload should contain a maximum of 1000 results, any additional results are ignored.
|
|
required: false
|
|
default: '../results'
|
|
checkout_path:
|
|
description: "The path at which the analyzed repository was checked out. Used to relativize any absolute paths in the uploaded SARIF file."
|
|
required: false
|
|
default: ${{ github.workspace }}
|
|
token:
|
|
default: ${{ github.token }}
|
|
matrix:
|
|
default: ${{ toJson(matrix) }}
|
|
runs:
|
|
using: 'node12'
|
|
main: '../lib/upload-sarif-action.js'
|