Files
codeql-action/start-proxy/action.yml
github-actions[bot] 6999d05549 Merge remote-tracking branch 'origin/releases/v3' into backport-v2.27.8-8a93837af
# Conflicts:
#	node_modules/.package-lock.json
2024-12-12 20:30:40 +00:00

30 lines
1.0 KiB
YAML

name: "CodeQL: Start proxy"
description: "[Experimental] Start HTTP proxy server. This action is for internal GitHub used only and will change without notice."
author: "GitHub"
inputs:
registry_secrets:
description: The URLs and credentials of package registries
required: false
default: "[]"
registries_credentials:
description: Base64 encoded JSON configuration for the URLs and credentials of the package registries
required: false
proxy_password:
required: false
description: The password of the proxy
token:
description: GitHub token to use for authenticating with this instance of GitHub, used to upload debug artifacts.
default: ${{ github.token }}
required: false
outputs:
proxy_host:
description: The IP address of the proxy
proxy_port:
description: The port of the proxy
proxy_ca_certificate:
description: The proxy's internal CA certificate in PEM format
runs:
using: node16
main: "../lib/start-proxy-action.js"
post: "../lib/start-proxy-action-post.js"