Files
codeql-action/start-proxy/action.yml
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
1.1 KiB
YAML
Raw Normal View History

2024-07-02 17:12:56 +02:00
name: "CodeQL: Start proxy"
2024-08-15 12:17:00 +00:00
description: "[Experimental] Start HTTP proxy server. This action is for internal GitHub used only and will change without notice."
2024-07-02 17:12:56 +02:00
author: "GitHub"
inputs:
registry_secrets:
description: The URLs and credentials of package registries
required: false
default: "[]"
2024-07-30 17:58:20 +02:00
registries_credentials:
description: Base64 encoded JSON configuration for the URLs and credentials of the package registries
required: false
2024-07-02 17:12:56 +02:00
proxy_password:
required: false
description: The password of the proxy
2024-12-11 14:48:09 +00:00
token:
description: GitHub token to use for authenticating with this instance of GitHub, used to upload debug artifacts.
default: ${{ github.token }}
required: false
2024-07-02 17:12:56 +02:00
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
proxy_urls:
description: The URLs of the configured registries, as a JSON array.
2024-07-02 17:12:56 +02:00
runs:
using: node20
main: "../lib/start-proxy-action.js"
post: "../lib/start-proxy-action-post.js"