File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
.github/actions/install-mvnd Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change 4
4
version :
5
5
description : ' The version of the Maven Daemon to install'
6
6
required : true
7
- default : ' 0.9.0 '
7
+ default : ' 1.0.2 '
8
8
file-version-suffix :
9
9
description : ' A suffix to append to the version of the download file of Maven Daemon to install'
10
10
required : false
@@ -61,11 +61,14 @@ runs:
61
61
run : |
62
62
curl -fsSL -o ${{ inputs.install-path }}/${{ env.MVND_NAME }}.zip https://archive.apache.org/dist/maven/mvnd/${{ inputs.version }}/${{ env.MVND_NAME }}.zip
63
63
curl -fsSL -o ${{ inputs.install-path }}/${{ env.MVND_NAME }}.zip.sha256 https://archive.apache.org/dist/maven/mvnd/${{ inputs.version }}/${{ env.MVND_NAME }}.zip.sha256
64
- - name : Install sha256sum (macOS)
65
- if : ${{ runner.os == 'macOS' }}
66
- shell : bash
67
- run : brew install coreutils
64
+ # see #5842
65
+ # brew install mvndaemon/homebrew-mvnd/mvnd@1
66
+ # - name: Install coreutils (macOS)
67
+ # if: ${{ runner.os == 'macOS' }}
68
+ # shell: bash
69
+ # run: brew install coreutils
68
70
- name : Verify mvnd sha256 checksum
71
+ if : ${{ runner.os != 'macOS' }}
69
72
shell : bash
70
73
run : echo "$(cat ${{ inputs.install-path }}/${{ env.MVND_NAME }}.zip.sha256) ${{ inputs.install-path }}/${{ env.MVND_NAME }}.zip" | sha256sum --check
71
74
- name : Unzip mvnd
You can’t perform that action at this time.
0 commit comments