mirror of
https://github.com/github/codeql-action.git
synced 2026-05-07 22:30:44 +00:00
19 lines
513 B
YAML
19 lines
513 B
YAML
name: 'CodeQL: Hash query inputs'
|
|
description: 'Hashes the query inputs, such as the database, queries and the cli itself'
|
|
author: 'GitHub'
|
|
inputs:
|
|
token:
|
|
default: ${{ github.token }}
|
|
matrix:
|
|
default: ${{ toJson(matrix) }}
|
|
database-mode:
|
|
description: The hashing strategy (currently supports ".rel")
|
|
required: false
|
|
default: ".rel"
|
|
outputs:
|
|
hashes:
|
|
description: A per-language JSON object with hashes for the inputs
|
|
runs:
|
|
using: 'node12'
|
|
main: '../lib/hash-database-action.js'
|