mirror of
https://github.com/actions/setup-java.git
synced 2025-02-19 10:52:50 -05:00
Fix GitHub Actions schema violations for non-string default values
This commit is contained in:
parent
3a4f6e1af5
commit
8f8ef8aa7f
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ inputs:
|
||||||
check-latest:
|
check-latest:
|
||||||
description: 'Set this option if you want the action to check for the latest available version that satisfies the version spec'
|
description: 'Set this option if you want the action to check for the latest available version that satisfies the version spec'
|
||||||
required: false
|
required: false
|
||||||
default: false
|
default: 'false'
|
||||||
server-id:
|
server-id:
|
||||||
description: 'ID of the distributionManagement repository in the pom.xml
|
description: 'ID of the distributionManagement repository in the pom.xml
|
||||||
file. Default is `github`'
|
file. Default is `github`'
|
||||||
|
@ -45,7 +45,7 @@ inputs:
|
||||||
overwrite-settings:
|
overwrite-settings:
|
||||||
description: 'Overwrite the settings.xml file if it exists. Default is "true".'
|
description: 'Overwrite the settings.xml file if it exists. Default is "true".'
|
||||||
required: false
|
required: false
|
||||||
default: true
|
default: 'true'
|
||||||
gpg-private-key:
|
gpg-private-key:
|
||||||
description: 'GPG private key to import. Default is empty string.'
|
description: 'GPG private key to import. Default is empty string.'
|
||||||
required: false
|
required: false
|
||||||
|
|
Loading…
Add table
Reference in a new issue