mirror of
https://github.com/github/codeql-action.git
synced 2026-05-21 21:08:32 +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
31 lines
1.2 KiB
YAML
31 lines
1.2 KiB
YAML
name: 'CodeQL: Resolve Build Environment'
|
|
description: '[Experimental] Attempt to infer a build environment suitable for automatic builds'
|
|
author: 'GitHub'
|
|
inputs:
|
|
token:
|
|
description: "GitHub token to use for authenticating with this instance of GitHub. The token must be the built-in GitHub Actions token, and the workflow must have the `security-events: write` permission. Most of the time it is advisable to avoid specifying this input so that the workflow falls back to using the default value."
|
|
required: false
|
|
default: ${{ github.token }}
|
|
matrix:
|
|
default: ${{ toJson(matrix) }}
|
|
language:
|
|
description: The language to infer the build environment configuration for.
|
|
required: true
|
|
working-directory:
|
|
description: >-
|
|
Resolve the build environment based on the files located at the specified
|
|
path (relative to $GITHUB_WORKSPACE). If this input is not set, then the
|
|
build environment is resolved based on the files in $GITHUB_WORKSPACE.
|
|
required: false
|
|
outputs:
|
|
environment:
|
|
description: The inferred build environment configuration.
|
|
runs:
|
|
<<<<<<< HEAD
|
|
using: node20
|
|
main: '../lib/resolve-environment-action.js'
|
|
=======
|
|
using: node24
|
|
main: '../lib/resolve-environment-entry.js'
|
|
>>>>>>> origin/releases/v4
|