Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/upload-sarif/action.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
19 lines (19 sloc)
611 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-action.js' |