essobedo commented on a change in pull request #6937: URL: https://github.com/apache/camel/pull/6937#discussion_r806044190
########## File path: .github/actions/install-mvnd/action.yml ########## @@ -0,0 +1,21 @@ +name: 'install-mvnd' +description: 'Install the maven daemon' +inputs: + version: + description: 'The version of the maven daemon to install' + required: true + default: '0.7.1' +outputs: + mvnd-dir: + description: "The directory where the command mvnd is located" + value: ${{ steps.mvnd-location.outputs.mvnd-dir }} +runs: + using: "composite" + steps: + - run: curl -fsSL -o mvnd.zip https://github.com/apache/maven-mvnd/releases/download/${{ inputs.version }}/mvnd-${{ inputs.version }}-linux-amd64.zip + shell: bash Review comment: You mean that you would like to add a checksum to guarantee the consistency of the file? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org