mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-28 01:50:27 +00:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6039015526 | ||
|
|
95a159ca13 | ||
|
|
b0f46ac8be | ||
|
|
5b48284f79 | ||
|
|
36e93e0501 | ||
|
|
459a174db6 | ||
|
|
0d66f4ca09 |
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@@ -189,10 +189,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
title: Update manifest
|
title: Update manifest
|
||||||
body: |
|
body: |
|
||||||
Auto-generated by [create-pull-request][1]
|
Auto-generated by [create-pull-request](https://github.com/peter-evans/create-pull-request)
|
||||||
[Please close and immediately reopen this pull request to run CI.][2]
|
|
||||||
|
|
||||||
[1]: https://github.com/peter-evans/create-pull-request
|
|
||||||
[2]: https://github.com/peter-evans/create-pull-request/blob/HEAD/docs/concepts-guidelines.md#workarounds-to-trigger-further-workflow-runs
|
|
||||||
branch: update-manifest
|
branch: update-manifest
|
||||||
|
token: ${{ secrets.CREATE_PR_TOKEN }}
|
||||||
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'push' && github.ref == 'refs/heads/main') && steps.diff.outputs.success == 'false'
|
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'push' && github.ref == 'refs/heads/main') && steps.diff.outputs.success == 'false'
|
||||||
|
|||||||
14
CHANGELOG.md
14
CHANGELOG.md
@@ -10,6 +10,16 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.11.4] - 2023-06-19
|
||||||
|
|
||||||
|
- Update `wasm-pack@latest` to 0.12.0.
|
||||||
|
|
||||||
|
- Update `shfmt@latest` to 3.7.0.
|
||||||
|
|
||||||
|
## [2.11.3] - 2023-06-17
|
||||||
|
|
||||||
|
- Update `cargo-tarpaulin@latest` to 0.26.0.
|
||||||
|
|
||||||
## [2.11.2] - 2023-06-15
|
## [2.11.2] - 2023-06-15
|
||||||
|
|
||||||
- Update `syft@latest` to 0.83.1.
|
- Update `syft@latest` to 0.83.1.
|
||||||
@@ -863,7 +873,9 @@ Note: This release is considered a breaking change because installing on version
|
|||||||
|
|
||||||
Initial release
|
Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.11.2...HEAD
|
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.11.4...HEAD
|
||||||
|
[2.11.4]: https://github.com/taiki-e/install-action/compare/v2.11.3...v2.11.4
|
||||||
|
[2.11.3]: https://github.com/taiki-e/install-action/compare/v2.11.2...v2.11.3
|
||||||
[2.11.2]: https://github.com/taiki-e/install-action/compare/v2.11.1...v2.11.2
|
[2.11.2]: https://github.com/taiki-e/install-action/compare/v2.11.1...v2.11.2
|
||||||
[2.11.1]: https://github.com/taiki-e/install-action/compare/v2.11.0...v2.11.1
|
[2.11.1]: https://github.com/taiki-e/install-action/compare/v2.11.0...v2.11.1
|
||||||
[2.11.0]: https://github.com/taiki-e/install-action/compare/v2.10.0...v2.11.0
|
[2.11.0]: https://github.com/taiki-e/install-action/compare/v2.10.0...v2.11.0
|
||||||
|
|||||||
25
main.sh
25
main.sh
@@ -555,23 +555,34 @@ for tool in "${tools[@]}"; do
|
|||||||
esac
|
esac
|
||||||
|
|
||||||
info "${tool} installed at $(type -P "${tool}${exe}")"
|
info "${tool} installed at $(type -P "${tool}${exe}")"
|
||||||
|
# At least cargo-udeps 0.1.30 and wasm-pack 0.12.0 do not support --version option.
|
||||||
case "${tool}" in
|
case "${tool}" in
|
||||||
cargo-*)
|
cargo-*)
|
||||||
if type -P cargo &>/dev/null; then
|
if type -P cargo &>/dev/null; then
|
||||||
case "${tool}" in
|
case "${tool}" in
|
||||||
cargo-udeps) x cargo udeps --help | head -1 ;; # cargo-udeps v0.1.30 does not support --version option
|
cargo-valgrind) x cargo "${tool#cargo-}" --help ;; # cargo-valgrind 2.1.0's --version option just calls cargo's --version option
|
||||||
cargo-valgrind) x cargo valgrind --help ;; # cargo-valgrind v2.1.0 does not support --version option
|
*)
|
||||||
*) x cargo "${tool#cargo-}" --version ;;
|
if ! x cargo "${tool#cargo-}" --version; then
|
||||||
|
x cargo "${tool#cargo-}" --help
|
||||||
|
fi
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
else
|
else
|
||||||
case "${tool}" in
|
case "${tool}" in
|
||||||
cargo-udeps) x "${tool}" udeps --help | head -1 ;; # cargo-udeps v0.1.30 does not support --version option
|
cargo-valgrind) x "${tool}" "${tool#cargo-}" --help ;; # cargo-valgrind 2.1.0's --version option just calls cargo's --version option
|
||||||
cargo-valgrind) x "${tool}" valgrind --help ;; # cargo-valgrind v2.1.0 does not support --version option
|
*)
|
||||||
*) x "${tool}" "${tool#cargo-}" --version ;;
|
if ! x "${tool}" "${tool#cargo-}" --version; then
|
||||||
|
x "${tool}" "${tool#cargo-}" --help
|
||||||
|
fi
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
*) x "${tool}" --version ;;
|
*)
|
||||||
|
if ! x "${tool}" --version; then
|
||||||
|
x "${tool}" --help
|
||||||
|
fi
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
echo
|
echo
|
||||||
done
|
done
|
||||||
|
|||||||
22
manifests/cargo-tarpaulin.json
generated
22
manifests/cargo-tarpaulin.json
generated
@@ -17,7 +17,27 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.25.2"
|
"version": "0.26.0"
|
||||||
|
},
|
||||||
|
"0.26": {
|
||||||
|
"version": "0.26.0"
|
||||||
|
},
|
||||||
|
"0.26.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"checksum": "6f33e393ea08c4e0e67c5a8ed12834a0fb4dd70026b7b8041c0665ed1599888e"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"checksum": "e4640fcdc031dd02b020ed4ddb4aafd2d073299c575d798b638612028b37f0fe"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"checksum": "bdaf24822d99d97fefd4aed13794655a8f229463c4c0f60a37d9869ea7e6fbb9"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"checksum": "14fab52ae66ae8655f5e2efbb9871e4581dca22c15f866fa99f2568cea131a5d"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"checksum": "eadb7c8681406261e446c5c2d5c5a0481e2483cb54cf52c9a515292ea6c3ffba"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.25": {
|
"0.25": {
|
||||||
"version": "0.25.2"
|
"version": "0.25.2"
|
||||||
|
|||||||
24
manifests/shfmt.json
generated
24
manifests/shfmt.json
generated
@@ -22,10 +22,30 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "3.6.0"
|
"version": "3.7.0"
|
||||||
},
|
},
|
||||||
"3": {
|
"3": {
|
||||||
"version": "3.6.0"
|
"version": "3.7.0"
|
||||||
|
},
|
||||||
|
"3.7": {
|
||||||
|
"version": "3.7.0"
|
||||||
|
},
|
||||||
|
"3.7.0": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"checksum": "0264c424278b18e22453fe523ec01a19805ce3b8ebf18eaf3aadc1edc23f42e3"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"checksum": "ae1d1ab961c113fb3dc2ff1150f33c3548983550d91da889b3171a5bcfaab14f"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"checksum": "2807b4af91fbbd961b68716de06c044f1b4f897457fc89fba216e5e2e351c64f"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"checksum": "111612560d15bd53d8e8f8f85731176ce12f3b418ec473d39a40ed6bbec772de"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"checksum": "ad7ff6f666adba3d801eb17365a15539f07296718d39fb62cc2fde6b527178aa"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"3.6": {
|
"3.6": {
|
||||||
"version": "3.6.0"
|
"version": "3.6.0"
|
||||||
|
|||||||
19
manifests/wasm-pack.json
generated
19
manifests/wasm-pack.json
generated
@@ -18,7 +18,24 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.11.1"
|
"version": "0.12.0"
|
||||||
|
},
|
||||||
|
"0.12": {
|
||||||
|
"version": "0.12.0"
|
||||||
|
},
|
||||||
|
"0.12.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"checksum": "60d7c5b082c408b9c201aa81813d87d5df23db4b1fa9c4a88302144e69bd3152"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"checksum": "a2fb0a8ab4b5ae1f7dd459af4634d062d7ca33200b1fe6fb527c3f3797b28fe3"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"checksum": "98ad2b548247f5ee89b2252d263caead040c155a348ebf780bb73b170e6605da"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"checksum": "19534e90fbe266a0f19085e186d983976e12a6390a76be1b2f977f53cbe922df"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.11": {
|
"0.11": {
|
||||||
"version": "0.11.1"
|
"version": "0.11.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user