Initial commit

This commit is contained in:
anaarmas
2020-04-27 21:08:38 +02:00
commit ed9e55c0bf
13975 changed files with 2635882 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
name: 'CodeQL: Autobuild'
description: 'Attempt to automatically build code'
author: 'GitHub'
runs:
using: 'node12'
main: '../../lib/autobuild.js'
+21
View File
@@ -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'
+19
View File
@@ -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'
+19
View File
@@ -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'