Skip to content

Commit

Permalink
Try to use node18 in action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsuyui committed Jun 3, 2023
1 parent 482b400 commit d55c91e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@ inputs:
required: false

runs:
using: 'node16'
# We should use node18, but it seems that it is not supported yet
# But it is safe to use node16 with the dist/index.js compiled with node v18 because of the backward compatibility
# https://json.schemastore.org/github-action.json
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
using: 'node18'
main: 'dist/index.js'

0 comments on commit d55c91e

Please sign in to comment.