We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9277913 commit 5cda426Copy full SHA for 5cda426
action.yml
@@ -58,8 +58,8 @@ runs:
58
else
59
download_url="https://github.com/codacy/git-version/releases/download/${{ inputs.tool-version }}/git-version"
60
fi
61
- curl -Ls "$download_url" > "${{ inputs.tool-installation-path }}/git-version"
62
- chmod +x "${{ inputs.tool-installation-path }}/git-version"
+ sudo wget "$download_url" -O "${{ inputs.tool-installation-path }}/git-version"
+ sudo chmod +x "${{ inputs.tool-installation-path }}/git-version"
63
- id: previous-version
64
shell: bash
65
run: |
0 commit comments