mirror of
https://github.com/actions/setup-java.git
synced 2025-04-21 02:16:45 +00:00
Add MTLS credentials setup for maven
Add MTLS setup credentials incldufing GHA parameters to be able to use maven for accessing MTLS protected maven repo
This commit is contained in:
parent
bf2ce29d70
commit
1b8060db20
5 changed files with 122 additions and 64 deletions
19
action.yml
19
action.yml
|
@ -9,10 +9,21 @@ inputs:
|
|||
Early access versions can be specified in the form of e.g. 14-ea,
|
||||
14.0.0-ea, or 14.0.0-ea.28'
|
||||
required: true
|
||||
maven-creds:
|
||||
description: 'Maven credential needed to setup MTLS. Credentails In the format
|
||||
of base64 encoded yaml containing following fields also containing
|
||||
base64 blobs ( CA_CERT, CERT, KEY, SETTINGS, SECURITY_SETTINGS)'
|
||||
maven-ca-cert-b64:
|
||||
description: 'CA cert in the format of a base64 blob used to connect to private
|
||||
maven repo protected by MTLS'
|
||||
maven-keystore-p12-b64:
|
||||
description: 'Keystore p12 in the format of a base64 blob used to connect to private
|
||||
maven repo protected by MTLS'
|
||||
maven-keystore-password:
|
||||
description: 'Password to perform extractions from the keystore used to connect to private
|
||||
maven repo protected by MTLS'
|
||||
maven-settings-b64:
|
||||
description: 'Settings xml in the format of base64 blob used to connect to private
|
||||
maven repo protected by MTLS'
|
||||
maven-security-settings-b64:
|
||||
description: 'Security ettings xml in the format of base64 blob used to connect to private
|
||||
maven repo protected by MTLS'
|
||||
java-package:
|
||||
description: 'The package type (jre, jdk, jdk+fx)'
|
||||
required: false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue