Add codeql-action/start-proxy
This commit is contained in:
parent
5669f66a72
commit
7b43b7c7ca
7 changed files with 386 additions and 0 deletions
22
start-proxy/action.yml
Normal file
22
start-proxy/action.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: "CodeQL: Start proxy"
|
||||
description: "Start HTTP proxy server"
|
||||
author: "GitHub"
|
||||
inputs:
|
||||
registry_secrets:
|
||||
description: The URLs and credentials of package registries
|
||||
required: false
|
||||
default: "[]"
|
||||
proxy_password:
|
||||
required: false
|
||||
description: The password of the proxy
|
||||
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: node20
|
||||
main: "../lib/start-proxy-action.js"
|
||||
post: "../lib/start-proxy-action-post.js"
|
||||
Loading…
Add table
Add a link
Reference in a new issue