Skip to content

Commit a4f0d61

Browse files
authored
Change to single quotes for runs syntax
fixes dev-drprasad#18 this and the previous commit dev-drprasad@7813493 Just in case there's some weird escaping happening, but likely not? Following the convention used in GitHub Docs examples https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-javascript-actions such as: ```yaml runs: using: 'node16' pre: 'setup.js' main: 'index.js' post: 'cleanup.js' ```
1 parent 7813493 commit a4f0d61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ inputs:
1919
required: false
2020

2121
runs:
22-
using: "node16"
23-
main: "index.js"
22+
using: 'node16'
23+
main: 'index.js'

0 commit comments

Comments
 (0)