mirror of
https://github.com/github/codeql-action.git
synced 2026-05-21 13:04:08 +00:00
0e6a98bb2f
# Conflicts: # analyze/action.yml # autobuild/action.yml # init/action.yml # resolve-environment/action.yml # setup-codeql/action.yml # start-proxy/action.yml # upload-sarif/action.yml
25 lines
907 B
YAML
25 lines
907 B
YAML
name: 'CodeQL: Autobuild'
|
|
description: 'Attempt to automatically build the code. Only used for analyzing languages that require a build. Use the `build-mode: autobuild` input in the `init` action instead.'
|
|
author: 'GitHub'
|
|
inputs:
|
|
token:
|
|
description: "GitHub token to use for authenticating with this instance of GitHub. The token needs the `security-events: write` permission."
|
|
required: false
|
|
default: ${{ github.token }}
|
|
matrix:
|
|
default: ${{ toJson(matrix) }}
|
|
working-directory:
|
|
description: >-
|
|
Run the autobuilder using this path (relative to $GITHUB_WORKSPACE) as
|
|
working directory. If this input is not set, the autobuilder runs with
|
|
$GITHUB_WORKSPACE as its working directory.
|
|
required: false
|
|
runs:
|
|
<<<<<<< HEAD
|
|
using: node20
|
|
main: '../lib/autobuild-action.js'
|
|
=======
|
|
using: node24
|
|
main: '../lib/autobuild-entry.js'
|
|
>>>>>>> origin/releases/v4
|