8000 Update the type of the default values of the action options · cygwin/cygwin-install-action@a39f501 · GitHub
[go: up one dir, main page]

Skip to content

Commit a39f501

Browse files
mlocatijon-turney
authored andcommitted
Update the type of the default values of the action options
They must be strings accordingly to the docs: see https://docs.github.com/en/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#inputsinput_iddefault
1 parent 7427b3d commit a39f501

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ inputs:
1818
check-sig:
1919
description: Should the setup.ini file signature be checked?
2020
required: false
21-
default: true
21+
default: 'true'
2222
pubkeys:
2323
description: Absolute paths of extra public key files (RFC4880 format), separated by whitespace
2424
required: false
@@ -28,11 +28,11 @@ inputs:
2828
add-to-path:
2929
description: Should Cygwin's bin directory be added to the system PATH?
3030
required: false
31-
default: true
31+
default: 'true'
3232
allow-test-packages:
3333
description: Consider package versions marked test
3434
required: false
35-
default: false
35+
default: 'false'
3636
check-hash:
3737
description: Check the hash of the installer
3838
required: false

0 commit comments

Comments
 (0)
0