File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -26,19 +26,21 @@ jobs:
26
26
if : ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
27
27
28
28
- name : Setup asdf
29
- uses : asdf-vm/actions/setup@v3
29
+
30
+ with :
31
+ version : 0.16.7
30
32
31
33
- name : Setup Go version
32
34
run : |
33
35
asdf plugin add golang
34
36
asdf install golang
35
- echo "go_version=$(asdf current golang | xargs | cut -d ' ' -f 2 )" >> $GITHUB_ENV
37
+ echo "go_version=$(asdf current golang | xargs | cut -d ' ' -f 6 )" >> $GITHUB_ENV
36
38
37
39
- name : Setup Node version
38
40
run : |
39
41
asdf plugin add nodejs
40
42
asdf install nodejs
41
- echo "node_version=$(asdf current nodejs | xargs | cut -d ' ' -f 2 )" >> $GITHUB_ENV
43
+ echo "node_version=$(asdf current nodejs | xargs | cut -d ' ' -f 6 )" >> $GITHUB_ENV
42
44
43
45
- name : Set nodejs as global exec
44
46
run : |
You can’t perform that action at this time.
0 commit comments