mirror of
https://github.com/github/codeql-action.git
synced 2026-05-08 23:00:26 +00:00
Initial commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
name: 'CodeQL: Autobuild'
|
||||
description: 'Attempt to automatically build code'
|
||||
author: 'GitHub'
|
||||
|
||||
runs:
|
||||
using: 'node12'
|
||||
main: '../../lib/autobuild.js'
|
||||
@@ -0,0 +1,21 @@
|
||||
name: 'CodeQL: Finish'
|
||||
description: 'Finalize CodeQL database'
|
||||
author: 'GitHub'
|
||||
inputs:
|
||||
check_name:
|
||||
description: The name of the check run to add text to.
|
||||
output:
|
||||
description: The path of the directory in which to save the SARIF results
|
||||
required: false
|
||||
default: '../results'
|
||||
upload:
|
||||
description: Upload the SARIF file
|
||||
required: false
|
||||
default: true
|
||||
token:
|
||||
default: ${{ github.token }}
|
||||
matrix:
|
||||
default: ${{ toJson(matrix) }}
|
||||
runs:
|
||||
using: 'node12'
|
||||
main: '../../lib/finalize-db.js'
|
||||
@@ -0,0 +1,19 @@
|
||||
name: 'CodeQL: Init'
|
||||
description: 'Setup the CodeQL tracer'
|
||||
author: 'GitHub'
|
||||
inputs:
|
||||
tools:
|
||||
description: URL of CodeQL tools
|
||||
required: false
|
||||
default: https://github.com/Anthophila/codeql-action/releases/download/codeql-bundle-20200422/codeql-bundle.zip
|
||||
languages:
|
||||
description: The languages to be analysed
|
||||
required: false
|
||||
token:
|
||||
default: ${{ github.token }}
|
||||
config-file:
|
||||
description: Path of the config file to use
|
||||
required: false
|
||||
runs:
|
||||
using: 'node12'
|
||||
main: '../../lib/setup-tracer.js'
|
||||
@@ -0,0 +1,19 @@
|
||||
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.
|
||||
required: false
|
||||
default: '../results'
|
||||
checkout_path:
|
||||
description: "The path at which the analyzed repository was checked out. Used to relativeize 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.js'
|
||||
Reference in New Issue
Block a user