We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58811ba commit fd067b4Copy full SHA for fd067b4
1 file changed
.github/actions/determineNodeVersions/action.yml
@@ -12,12 +12,14 @@ outputs:
12
runs:
13
using: 'composite'
14
steps:
15
+ # Note: this is not typically how you would run javascript in an action
16
+ # This is need so that we can get the correct node version used elsewhere
17
- name: Set up Node
18
uses: actions/setup-node@v4
19
with:
20
node-version: ${{ inputs.nodeVersionOverride }}
21
- name: Run main script
22
shell: bash
23
id: node-versions
- run: node dist/index.js
24
+ run: node ${{ github.action_path }}/dist/index.js
25
0 commit comments