mirror of
https://github.com/github/codeql-action.git
synced 2026-05-07 22:30:44 +00:00
19 lines
449 B
YAML
19 lines
449 B
YAML
name: 'CodeQL: Hash Database'
|
|
description: 'Hashes the built database, using a stable hash'
|
|
author: 'GitHub'
|
|
inputs:
|
|
token:
|
|
default: ${{ github.token }}
|
|
matrix:
|
|
default: ${{ toJson(matrix) }}
|
|
mode:
|
|
description: The hashing strategy (currently supports ".rel")
|
|
required: false
|
|
default: ".rel"
|
|
outputs:
|
|
hash:
|
|
description: the stable hash of the database
|
|
runs:
|
|
using: 'node12'
|
|
main: '../lib/hash-database-action.js'
|