mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-27 01:20:28 +00:00
Compare commits
48 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eab2c9a639 | ||
|
|
04da82019b | ||
|
|
d22c04db3c | ||
|
|
288875dd3d | ||
|
|
ff61ba777f | ||
|
|
443c943e8c | ||
|
|
44ad71dd7c | ||
|
|
541dbe11e2 | ||
|
|
3f8c36b267 | ||
|
|
8c4bfde290 | ||
|
|
5516699334 | ||
|
|
26d534b7cc | ||
|
|
21162aa73c | ||
|
|
5225800240 | ||
|
|
3035223527 | ||
|
|
61e7476da0 | ||
|
|
1d1c9eea2b | ||
|
|
0fca428425 | ||
|
|
d4422f254e | ||
|
|
8eb8df0dff | ||
|
|
f2dad83b41 | ||
|
|
d3525148a0 | ||
|
|
1bd9eee811 | ||
|
|
d7ea18b7d4 | ||
|
|
4bab704860 | ||
|
|
1e67dedb5e | ||
|
|
b0cd8d3751 | ||
|
|
7b52b108a0 | ||
|
|
292e521d7c | ||
|
|
c9244c19ac | ||
|
|
672b40bb62 | ||
|
|
783ca381c0 | ||
|
|
509565405a | ||
|
|
c6468a01fd | ||
|
|
43a18eebd6 | ||
|
|
29d060fdf9 | ||
|
|
1c0532667b | ||
|
|
f176c07a0a | ||
|
|
1cda85cc68 | ||
|
|
4573997e3b | ||
|
|
5924dff649 | ||
|
|
8c869d596e | ||
|
|
a8d20a76f9 | ||
|
|
cd06cfcb31 | ||
|
|
635e8d9f88 | ||
|
|
807ad88d01 | ||
|
|
cd3548cd4e | ||
|
|
8aeedaa026 |
1
.github/.cspell/project-dictionary.txt
vendored
1
.github/.cspell/project-dictionary.txt
vendored
@@ -2,6 +2,7 @@ almalinux
|
||||
archlinux
|
||||
binstall
|
||||
callgrind
|
||||
Ceuo
|
||||
coreutils
|
||||
cyclonedx
|
||||
cygdrive
|
||||
|
||||
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
@@ -10,6 +10,7 @@ on:
|
||||
- main
|
||||
- dev
|
||||
- ci-*
|
||||
- busybox
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
workflow_dispatch:
|
||||
@@ -231,7 +232,17 @@ jobs:
|
||||
- opensuse/leap:latest # glibc 2.38 (as of leap 15.6)
|
||||
- opensuse/tumbleweed:latest # glibc 2.39 (as of 2024-07-19)
|
||||
- archlinux:latest # glibc 2.39 (as of 2024-07-19)
|
||||
- alpine:latest # musl 1.2.5 (as of alpine 3.20)
|
||||
- alpine:3.2 # musl 1.1.11, busybox 1.23.2
|
||||
- alpine:3.14 # musl 1.2.2, busybox 1.33.1
|
||||
- alpine:3.15 # musl 1.2.2, busybox 1.34.1
|
||||
- alpine:3.16 # musl 1.2.3, busybox 1.35.0
|
||||
- alpine:3.17 # musl 1.2.3, busybox 1.35.0
|
||||
- alpine:3.18 # musl 1.2.4, busybox 1.36.1
|
||||
- alpine:3.19 # musl 1.2.4, busybox 1.36.1
|
||||
- alpine:3.20 # musl 1.2.5, busybox 1.36.1
|
||||
- alpine:3.21 # musl 1.2.5, busybox 1.37.0
|
||||
- alpine:3.22 # musl 1.2.5, busybox 1.37.0
|
||||
- alpine:3.23 # musl 1.2.5, busybox 1.37.0
|
||||
# - openwrt/rootfs:x86-64-openwrt-24.10 # musl 1.2.5
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 60
|
||||
@@ -282,6 +293,9 @@ jobs:
|
||||
tool: ${{ steps.tool-list.outputs.tool }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- run: apk --no-cache add bash
|
||||
shell: sh
|
||||
if: startsWith(matrix.container, 'alpine')
|
||||
- name: Test bash
|
||||
run: just --version && shfmt --version
|
||||
shell: bash
|
||||
|
||||
55
.github/workflows/manifest.yml
vendored
55
.github/workflows/manifest.yml
vendored
@@ -33,47 +33,18 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
manifest:
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 60
|
||||
uses: taiki-e/github-actions/.github/workflows/gen.yml@main
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write # for gh pr review --approve
|
||||
steps:
|
||||
- uses: taiki-e/checkout-action@v1
|
||||
- uses: taiki-e/github-actions/install-rust@stable
|
||||
- name: Generate Cargo.lock
|
||||
run: cargo update
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
with:
|
||||
cache-all-crates: 'true'
|
||||
- run: tools/manifest.sh
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Handle diff
|
||||
id: diff
|
||||
run: tools/ci/manifest.sh
|
||||
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' && github.ref == 'refs/heads/main')
|
||||
- run: git add -N . && git -c color.ui=always diff --exit-code
|
||||
- id: create-pull-request
|
||||
uses: peter-evans/create-pull-request@v8
|
||||
with:
|
||||
title: Update manifest
|
||||
body: |
|
||||
Auto-generated by CI using [create-pull-request](https://github.com/peter-evans/create-pull-request).
|
||||
|
||||
This will be auto-merged when CI has passed because this is an auto-generated PR in a defined format and is usually considered no additional review is required.
|
||||
branch: update-manifest
|
||||
token: ${{ secrets.CREATE_PR_TOKEN }}
|
||||
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' && github.ref == 'refs/heads/main') && steps.diff.outputs.success == 'false'
|
||||
- name: Enable auto-merge for auto-generated PR
|
||||
run: gh pr merge --rebase --auto "${PR_NUMBER:?}"
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.CREATE_PR_TOKEN }}
|
||||
PR_NUMBER: ${{ steps.create-pull-request.outputs.pull-request-number }}
|
||||
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' && github.ref == 'refs/heads/main') && steps.diff.outputs.success == 'false' && steps.create-pull-request.outputs.pull-request-operation == 'created'
|
||||
- name: Approve auto-generated PR for auto-merge
|
||||
run: gh pr review --approve "${PR_NUMBER:?}"
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
PR_NUMBER: ${{ steps.create-pull-request.outputs.pull-request-number }}
|
||||
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' && github.ref == 'refs/heads/main') && steps.diff.outputs.success == 'false' && (steps.create-pull-request.outputs.pull-request-operation == 'created' || steps.create-pull-request.outputs.pull-request-operation == 'updated')
|
||||
pull-requests: write # for gh pr edit --add-assignee / gh pr review --approve
|
||||
repository-projects: read # for gh pr edit --add-assignee
|
||||
secrets: inherit
|
||||
with:
|
||||
script: tools/manifest.sh
|
||||
commit-script: tools/ci/manifest.sh
|
||||
title: Update manifest
|
||||
branch: update-manifest
|
||||
automerge: true
|
||||
install-rust: true
|
||||
rust: stable
|
||||
rust-cache: true
|
||||
|
||||
78
CHANGELOG.md
78
CHANGELOG.md
@@ -10,6 +10,74 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.67.30] - 2026-02-13
|
||||
|
||||
- Update `cargo-nextest@latest` to 0.9.127.
|
||||
|
||||
## [2.67.29] - 2026-02-13
|
||||
|
||||
- Update `mise@latest` to 2026.2.11.
|
||||
|
||||
- Update `cargo-no-dev-deps@latest` to 0.2.21.
|
||||
|
||||
- Update `cargo-minimal-versions@latest` to 0.1.36.
|
||||
|
||||
- Update `cargo-hack@latest` to 0.6.43.
|
||||
|
||||
- Update `cargo-binstall@latest` to 1.17.5.
|
||||
|
||||
- Update `osv-scanner@latest` to 2.3.3.
|
||||
|
||||
- Update `martin@latest` to 1.3.1.
|
||||
|
||||
- Update `parse-dockerfile@latest` to 0.1.4.
|
||||
|
||||
## [2.67.28] - 2026-02-11
|
||||
|
||||
- Update `uv@latest` to 0.10.2.
|
||||
|
||||
- Update `syft@latest` to 1.42.0.
|
||||
|
||||
- Update `mise@latest` to 2026.2.9.
|
||||
|
||||
- Update `cyclonedx@latest` to 0.30.0.
|
||||
|
||||
## [2.67.27] - 2026-02-09
|
||||
|
||||
- Update `sccache@latest` to 0.14.0.
|
||||
|
||||
- Update `typos@latest` to 1.43.4.
|
||||
|
||||
- Update `mise@latest` to 2026.2.8.
|
||||
|
||||
## [2.67.26] - 2026-02-09
|
||||
|
||||
- Update `tombi@latest` to 0.7.28.
|
||||
|
||||
- Update `mise@latest` to 2026.2.7.
|
||||
|
||||
## [2.67.25] - 2026-02-07
|
||||
|
||||
- Update `cargo-hack@latest` to 0.6.42.
|
||||
|
||||
## [2.67.24] - 2026-02-06
|
||||
|
||||
- Update `cargo-llvm-cov@latest` to 0.8.4.
|
||||
|
||||
- Update `typos@latest` to 1.43.3.
|
||||
|
||||
- Update `vacuum@latest` to 0.23.8.
|
||||
|
||||
## [2.67.23] - 2026-02-06
|
||||
|
||||
- Update `prek@latest` to 0.3.2.
|
||||
|
||||
- Update `mise@latest` to 2026.2.5.
|
||||
|
||||
- Update `typos@latest` to 1.43.2.
|
||||
|
||||
- Update `release-plz@latest` to 0.3.155.
|
||||
|
||||
## [2.67.22] - 2026-02-06
|
||||
|
||||
- Update `uv@latest` to 0.10.0.
|
||||
@@ -5579,7 +5647,15 @@ Note: This release is considered a breaking change because installing on version
|
||||
|
||||
Initial release
|
||||
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.67.22...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.67.30...HEAD
|
||||
[2.67.30]: https://github.com/taiki-e/install-action/compare/v2.67.29...v2.67.30
|
||||
[2.67.29]: https://github.com/taiki-e/install-action/compare/v2.67.28...v2.67.29
|
||||
[2.67.28]: https://github.com/taiki-e/install-action/compare/v2.67.27...v2.67.28
|
||||
[2.67.27]: https://github.com/taiki-e/install-action/compare/v2.67.26...v2.67.27
|
||||
[2.67.26]: https://github.com/taiki-e/install-action/compare/v2.67.25...v2.67.26
|
||||
[2.67.25]: https://github.com/taiki-e/install-action/compare/v2.67.24...v2.67.25
|
||||
[2.67.24]: https://github.com/taiki-e/install-action/compare/v2.67.23...v2.67.24
|
||||
[2.67.23]: https://github.com/taiki-e/install-action/compare/v2.67.22...v2.67.23
|
||||
[2.67.22]: https://github.com/taiki-e/install-action/compare/v2.67.21...v2.67.22
|
||||
[2.67.21]: https://github.com/taiki-e/install-action/compare/v2.67.20...v2.67.21
|
||||
[2.67.20]: https://github.com/taiki-e/install-action/compare/v2.67.19...v2.67.20
|
||||
|
||||
@@ -118,12 +118,14 @@ On Linux, if any required tools are missing, this action will attempt to install
|
||||
|
||||
On other platforms, at least the following tools are required:
|
||||
|
||||
- bash 3.2+
|
||||
- bash 3.2+ (or busybox on Linux)
|
||||
- jq 1.3+ (only on non-Windows platforms)
|
||||
- curl 7.34+ (or RHEL7/CentOS7's patched curl 7.29)
|
||||
|
||||
Known environments affected by the above version requirements are CentOS 6 (EoL on 2020-11) using curl 7.19, and Ubuntu 12.04 (EoL on 2017-04) using curl 7.22 (see "Install requirements" in [our CI config](https://github.com/taiki-e/install-action/blob/HEAD/.github/workflows/ci.yml) for example of workaround).
|
||||
|
||||
Note that what this action installs for its setup (such as above tools) is considered an implementation detail if they are installed by this action's side, and there is no guarantee that they will be available in subsequent steps, because this action is not an action for installing those tools.
|
||||
|
||||
## Related Projects
|
||||
|
||||
- [cache-cargo-install-action]: GitHub Action for `cargo install` with cache.
|
||||
|
||||
32
action.yml
32
action.yml
@@ -21,32 +21,32 @@ inputs:
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- run: |
|
||||
- name: Prepare
|
||||
id: prepare
|
||||
run: |
|
||||
set -eu
|
||||
if ! command -v bash >/dev/null; then
|
||||
if grep -Eq '^ID=alpine' /etc/os-release; then
|
||||
printf '::group::Install packages required for install-action (bash)\n'
|
||||
# NB: sync with apk_install in main.sh
|
||||
if command -v sudo >/dev/null; then
|
||||
sudo apk --no-cache add bash
|
||||
elif command -v doas >/dev/null; then
|
||||
doas apk --no-cache add bash
|
||||
else
|
||||
apk --no-cache add bash
|
||||
if command -v busybox >/dev/null; then
|
||||
if test -n "${GITHUB_OUTPUT:-}"; then
|
||||
printf 'shell=busybox sh -e {0}\n' >>"${GITHUB_OUTPUT}"
|
||||
exit
|
||||
fi
|
||||
printf '::endgroup::\n'
|
||||
else
|
||||
printf '::error::install-action requires bash\n'
|
||||
exit 1
|
||||
fi
|
||||
printf '::error::install-action requires bash or busybox\n'
|
||||
exit 1
|
||||
fi
|
||||
shell: sh
|
||||
if: runner.os == 'Linux'
|
||||
- run: bash --noprofile --norc "${GITHUB_ACTION_PATH:?}/main.sh"
|
||||
shell: bash
|
||||
- run: |
|
||||
case "${CURRENT_SHELL}" in
|
||||
busybox*) busybox sh "${GITHUB_ACTION_PATH:?}/main.sh" ;;
|
||||
*) bash --noprofile --norc "${GITHUB_ACTION_PATH:?}/main.sh" ;;
|
||||
esac
|
||||
shell: ${{ steps.prepare.outputs.shell || 'bash' }}
|
||||
env:
|
||||
INPUT_TOOL: ${{ inputs.tool }}
|
||||
INPUT_CHECKSUM: ${{ inputs.checksum }}
|
||||
INPUT_FALLBACK: ${{ inputs.fallback }}
|
||||
DEFAULT_GITHUB_TOKEN: ${{ github.token }}
|
||||
ACTION_USER_AGENT: ${{ github.action_repository }} (${{ github.action_ref }})
|
||||
CURRENT_SHELL: ${{ steps.prepare.outputs.shell }}
|
||||
|
||||
57
main.sh
57
main.sh
@@ -1,6 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
set -CeEuo pipefail
|
||||
# Do not set -E as busybox 3.15 and older don't support it.
|
||||
set -Ceuo pipefail
|
||||
IFS=$'\n\t'
|
||||
|
||||
rx() {
|
||||
@@ -35,11 +36,11 @@ normalize_comma_or_space_separated() {
|
||||
if [[ "${list}" == *","* ]]; then
|
||||
# If a comma is contained, consider it is a comma-separated list.
|
||||
# Drop leading and trailing whitespaces in each element.
|
||||
sed -E 's/ *, */,/g; s/^.//' <<<",${list},"
|
||||
printf '%s\n' ",${list}," | sed -E 's/ *, */,/g; s/^.//'
|
||||
else
|
||||
# Otherwise, consider it is a whitespace-separated list.
|
||||
# Convert whitespace characters into comma.
|
||||
sed -E 's/ +/,/g; s/^.//' <<<" ${list} "
|
||||
printf '%s\n' " ${list} " | sed -E 's/ +/,/g; s/^.//'
|
||||
fi
|
||||
}
|
||||
_sudo() {
|
||||
@@ -60,11 +61,11 @@ download_and_checksum() {
|
||||
if [[ -n "${checksum}" ]]; then
|
||||
info "verifying sha256 checksum for $(basename -- "${url}")"
|
||||
if type -P sha256sum >/dev/null; then
|
||||
sha256sum -c - >/dev/null <<<"${checksum} *tmp"
|
||||
printf '%s\n' "${checksum} *tmp" | sha256sum -c - >/dev/null
|
||||
elif type -P shasum >/dev/null; then
|
||||
# GitHub-hosted macOS runner does not install GNU Coreutils by default.
|
||||
# https://github.com/actions/runner-images/issues/90
|
||||
shasum -a 256 -c - >/dev/null <<<"${checksum} *tmp"
|
||||
printf '%s\n' "${checksum} *tmp" | shasum -a 256 -c - >/dev/null
|
||||
else
|
||||
bail "checksum requires 'sha256sum' or 'shasum' command; consider installing one of them or setting 'checksum' input option to 'false'"
|
||||
fi
|
||||
@@ -224,7 +225,7 @@ read_manifest() {
|
||||
download_info="null"
|
||||
return 0
|
||||
fi
|
||||
exact_version=$(jq -r '.version' <<<"${manifest}")
|
||||
exact_version=$(printf '%s\n' "${manifest}" | jq -r '.version')
|
||||
if [[ "${exact_version}" == "null" ]]; then
|
||||
exact_version="${version}"
|
||||
else
|
||||
@@ -236,11 +237,11 @@ read_manifest() {
|
||||
crate_info=$(curl -v --user-agent "${ACTION_USER_AGENT}" --proto '=https' --tlsv1.2 -fsSL --retry 10 "https://crates.io/api/v1/crates/${rust_crate}" || true)
|
||||
if [[ -n "${crate_info}" ]]; then
|
||||
while true; do
|
||||
yanked=$(jq -r ".versions[] | select(.num == \"${exact_version}\") | .yanked" <<<"${crate_info}")
|
||||
yanked=$(printf '%s\n' "${crate_info}" | jq -r ".versions[] | select(.num == \"${exact_version}\") | .yanked")
|
||||
if [[ "${yanked}" != "true" ]]; then
|
||||
break
|
||||
fi
|
||||
previous_stable_version=$(jq -r '.previous_stable_version' <<<"${manifest}")
|
||||
previous_stable_version=$(printf '%s\n' "${manifest}" | jq -r '.previous_stable_version')
|
||||
if [[ "${previous_stable_version}" == "null" ]]; then
|
||||
break
|
||||
fi
|
||||
@@ -260,26 +261,26 @@ read_manifest() {
|
||||
# usually preferred over linux-gnu binaries because they can avoid glibc version issues.
|
||||
# (rustc enables statically linking for linux-musl by default, except for mips.)
|
||||
host_platform="${host_arch}_linux_musl"
|
||||
download_info=$(jq -r ".${host_platform}" <<<"${manifest}")
|
||||
download_info=$(printf '%s\n' "${manifest}" | jq -r ".${host_platform}")
|
||||
if [[ "${download_info}" == "null" ]]; then
|
||||
# Even if host_env is musl, we won't issue an error here because it seems that in
|
||||
# some cases linux-gnu binaries will work on linux-musl hosts.
|
||||
# https://wiki.alpinelinux.org/wiki/Running_glibc_programs
|
||||
# TODO: However, a warning may make sense.
|
||||
host_platform="${host_arch}_linux_gnu"
|
||||
download_info=$(jq -r ".${host_platform}" <<<"${manifest}")
|
||||
download_info=$(printf '%s\n' "${manifest}" | jq -r ".${host_platform}")
|
||||
elif [[ "${host_env}" == "gnu" ]]; then
|
||||
# TODO: don't hardcode tool name and use 'prefer_linux_gnu' field in base manifest.
|
||||
case "${tool}" in
|
||||
cargo-nextest)
|
||||
# TODO: don't hardcode required glibc version
|
||||
required_glibc_version=2.27
|
||||
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"${required_glibc_version}"$'\n'"${host_glibc_version}" | tail -1)
|
||||
higher_glibc_version=$(printf '%s\n%s\n' "${required_glibc_version}" "${host_glibc_version}" | LC_ALL=C sort -Vu | tail -1)
|
||||
if [[ "${higher_glibc_version}" == "${host_glibc_version}" ]]; then
|
||||
# musl build of nextest is slow, so use glibc build if host_env is gnu.
|
||||
# https://github.com/taiki-e/install-action/issues/13
|
||||
host_platform="${host_arch}_linux_gnu"
|
||||
download_info=$(jq -r ".${host_platform}" <<<"${manifest}")
|
||||
download_info=$(printf '%s\n' "${manifest}" | jq -r ".${host_platform}")
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
@@ -289,10 +290,10 @@ read_manifest() {
|
||||
# Binaries compiled for x86_64 macOS will usually also work on AArch64 macOS.
|
||||
# Binaries compiled for x86_64 Windows will usually also work on AArch64 Windows 11+.
|
||||
host_platform="${host_arch}_${host_os}"
|
||||
download_info=$(jq -r ".${host_platform}" <<<"${manifest}")
|
||||
download_info=$(printf '%s\n' "${manifest}" | jq -r ".${host_platform}")
|
||||
if [[ "${download_info}" == "null" ]] && [[ "${host_arch}" != "x86_64" ]]; then
|
||||
host_platform="x86_64_${host_os}"
|
||||
download_info=$(jq -r ".${host_platform}" <<<"${manifest}")
|
||||
download_info=$(printf '%s\n' "${manifest}" | jq -r ".${host_platform}")
|
||||
fi
|
||||
;;
|
||||
*) bail "unsupported OS type '${host_os}' for ${tool}" ;;
|
||||
@@ -304,25 +305,25 @@ read_download_info() {
|
||||
if [[ "${download_info}" == "null" ]]; then
|
||||
bail "${tool}@${version} for '${host_os}' is not supported"
|
||||
fi
|
||||
checksum=$(jq -r '.checksum' <<<"${download_info}")
|
||||
url=$(jq -r '.url' <<<"${download_info}")
|
||||
checksum=$(printf '%s\n' "${download_info}" | jq -r '.checksum')
|
||||
url=$(printf '%s\n' "${download_info}" | jq -r '.url')
|
||||
local tmp
|
||||
bin_in_archive=()
|
||||
if [[ "${url}" == "null" ]]; then
|
||||
local template
|
||||
template=$(jq -c ".template.${host_platform}" "${manifest_dir}/${tool}.json")
|
||||
template="${template//\$\{version\}/${exact_version}}"
|
||||
url=$(jq -r '.url' <<<"${template}")
|
||||
tmp=$(jq -r '.bin' <<<"${template}")
|
||||
url=$(printf '%s\n' "${template}" | jq -r '.url')
|
||||
tmp=$(printf '%s\n' "${template}" | jq -r '.bin')
|
||||
if [[ "${tmp}" == *"["* ]]; then
|
||||
# shellcheck disable=SC2207
|
||||
bin_in_archive=($(jq -r '.bin[]' <<<"${template}"))
|
||||
bin_in_archive=($(printf '%s\n' "${template}" | jq -r '.bin[]'))
|
||||
fi
|
||||
else
|
||||
tmp=$(jq -r '.bin' <<<"${download_info}")
|
||||
tmp=$(printf '%s\n' "${download_info}" | jq -r '.bin')
|
||||
if [[ "${tmp}" == *"["* ]]; then
|
||||
# shellcheck disable=SC2207
|
||||
bin_in_archive=($(jq -r '.bin[]' <<<"${download_info}"))
|
||||
bin_in_archive=($(printf '%s\n' "${download_info}" | jq -r '.bin[]'))
|
||||
fi
|
||||
fi
|
||||
if [[ ${#bin_in_archive[@]} -eq 0 ]]; then
|
||||
@@ -431,7 +432,7 @@ init_install_action_bin_dir() {
|
||||
}
|
||||
canonicalize_windows_path() {
|
||||
case "${host_os}" in
|
||||
windows) sed -E 's/^\/cygdrive\//\//; s/^\/c\//C:\\/; s/\//\\/g' <<<"$1" ;;
|
||||
windows) printf '%s\n' "$1" | sed -E 's/^\/cygdrive\//\//; s/^\/c\//C:\\/; s/\//\\/g' ;;
|
||||
*) printf '%s\n' "$1" ;;
|
||||
esac
|
||||
}
|
||||
@@ -483,11 +484,11 @@ case "$(uname -s)" in
|
||||
Linux)
|
||||
host_os=linux
|
||||
ldd_version=$(ldd --version 2>&1 || true)
|
||||
if grep -Fq musl <<<"${ldd_version}"; then
|
||||
if printf '%s\n' "${ldd_version}" | grep -Fq musl; then
|
||||
host_env=musl
|
||||
else
|
||||
host_env=gnu
|
||||
host_glibc_version=$(grep -E "GLIBC|GNU libc" <<<"${ldd_version}" | sed -E "s/.* //g")
|
||||
host_glibc_version=$(printf '%s\n' "${ldd_version}" | grep -E "GLIBC|GNU libc" | sed -E "s/.* //g")
|
||||
fi
|
||||
if [[ -e /etc/os-release ]]; then
|
||||
if grep -Eq '^ID_LIKE=' /etc/os-release; then
|
||||
@@ -654,9 +655,9 @@ case "${host_os}" in
|
||||
jq() { "${install_action_dir}/jq/bin/jq.exe" -b "$@"; }
|
||||
elif type -P jq >/dev/null; then
|
||||
# https://github.com/jqlang/jq/issues/1854
|
||||
_tmp=$(jq -r .a <<<'{}' | wc -c)
|
||||
_tmp=$(printf '{}\n' | jq -r .a | wc -c)
|
||||
if [[ "${_tmp}" != 5 ]]; then
|
||||
_tmp=$({ jq -b -r .a 2>/dev/null <<<'{}' || true; } | wc -c)
|
||||
_tmp=$({ printf '{}\n' | jq -b -r .a 2>/dev/null || true; } | wc -c)
|
||||
if [[ "${_tmp}" == 5 ]]; then
|
||||
jq() { command jq -b "$@"; }
|
||||
else
|
||||
@@ -685,8 +686,8 @@ for tool in "${tools[@]}"; do
|
||||
if [[ "${tool}" == *"@"* ]]; then
|
||||
version="${tool#*@}"
|
||||
tool="${tool%@*}"
|
||||
if [[ ! "${version}" =~ ^([1-9][0-9]*(\.[0-9]+(\.[0-9]+)?)?|0\.[1-9][0-9]*(\.[0-9]+)?|^0\.0\.[0-9]+)(-[0-9A-Za-z\.-]+)?$|^latest$ ]]; then
|
||||
if [[ ! "${version}" =~ ^([1-9][0-9]*(\.[0-9]+(\.[0-9]+)?)?|0\.[1-9][0-9]*(\.[0-9]+)?|^0\.0\.[0-9]+)(-[0-9A-Za-z\.-]+)?(\+[0-9A-Za-z\.-]+)?$|^latest$ ]]; then
|
||||
if ! printf '%s\n' "${version}" | grep -Eq '^([1-9][0-9]*(\.[0-9]+(\.[0-9]+)?)?|0\.[1-9][0-9]*(\.[0-9]+)?|^0\.0\.[0-9]+)(-[0-9A-Za-z\.-]+)?$|^latest$'; then
|
||||
if ! printf '%s\n' "${version}" | grep -Eq '^([1-9][0-9]*(\.[0-9]+(\.[0-9]+)?)?|0\.[1-9][0-9]*(\.[0-9]+)?|^0\.0\.[0-9]+)(-[0-9A-Za-z\.-]+)?(\+[0-9A-Za-z\.-]+)?$|^latest$'; then
|
||||
bail "install-action does not support semver operators: '${version}'"
|
||||
fi
|
||||
bail "install-action v2 does not support semver build-metadata: '${version}'; if you need these supports again, please submit an issue at <https://github.com/taiki-e/install-action>"
|
||||
|
||||
28
manifests/cargo-binstall.json
generated
28
manifests/cargo-binstall.json
generated
@@ -22,32 +22,32 @@
|
||||
},
|
||||
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
||||
"latest": {
|
||||
"version": "1.17.4"
|
||||
"version": "1.17.5"
|
||||
},
|
||||
"1.17.4": {
|
||||
"1.17.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE5E1D0450D24B",
|
||||
"checksum": "8822793dd22a1fcfba6d7581ed130ec935fb26a0db58fb9b0f01f0fae17d28f8"
|
||||
"etag": "0x8DE6B056582AD30",
|
||||
"checksum": "c0f247726165afc445076a9d58cf3795512b6e5787ae469297a39b8c9e30a51f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE5E1D0A6870BF",
|
||||
"checksum": "278a12a049397b9f73df0c1e6c83c15fe184e3f5d824ee9a66460c41e519cfd6"
|
||||
"etag": "0x8DE6B056D57BB61",
|
||||
"checksum": "2471743078bbf1685e8493121b03c6555042690ea10661e0fddba647bceac13c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE5E1D085D608D",
|
||||
"checksum": "9c6df6ed7e0eef153fdd6aa0fe0c873496431ea44e2b209331b2dbd29d0d3c06"
|
||||
"etag": "0x8DE6B056AB691BF",
|
||||
"checksum": "501697fe946b691d215600d144b53b696cc6fb03f3e1773f582b375672c26be6"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE5E1D12C0247F",
|
||||
"checksum": "1410ec72b4f23fa6cf8ebb4b55fe03ebca63e14adadf4501d78e91fa004e9689"
|
||||
"etag": "0x8DE6B0577EF5F64",
|
||||
"checksum": "6a82fd5207e0647fcb28fc8db30b0186a2e6223aaa5411a588f0573c77d620e3"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE5E1D1990CCCD",
|
||||
"checksum": "c689061413598fa32b77b6fd2a7300c6392faf008137194ab8a4cdb93c12040a"
|
||||
"etag": "0x8DE6B058118E22B",
|
||||
"checksum": "896e75a79773a11ad651649dce449a223ddd1dc718e687301988b46ee26fe58f"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE5E1D1757B480",
|
||||
"checksum": "6096f3a5da155fcf06f5fe48ee86a0b40427e48d0abb7206e2bc54572f875400"
|
||||
"etag": "0x8DE6B057E156D80",
|
||||
"checksum": "ad0d0d0d51fdbb66becab98886dd5500968b37dac7f4efb7d2f6ed0cf7847939"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
98
manifests/cargo-hack.json
generated
98
manifests/cargo-hack.json
generated
@@ -3,10 +3,104 @@
|
||||
"template": null,
|
||||
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/cargo-hack/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-hack/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.6.41"
|
||||
"version": "0.6.43"
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.41"
|
||||
"version": "0.6.43"
|
||||
},
|
||||
"0.6.43": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.43/cargo-hack-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE6AFC0BACBCA3",
|
||||
"checksum": "e8516415020c9d40d8d6df6bca9ec6bf653a03b46f82c0d2fe5180312cc04c93"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.43/cargo-hack-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DE6AFCB41BCDFE",
|
||||
"checksum": "f4e2d0ee405dbf2ae4812469458dd2f3e5b2d95755839b527fc88d18efc94e2e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.43/cargo-hack-x86_64-pc-windows-msvc.tar.gz",
|
||||
"etag": "0x8DE6AFBDC9105E7",
|
||||
"checksum": "95de9fcf93eeed60c190163e753235c49a80298a051d57158beb29a3298b3105"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.43/cargo-hack-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE6AFBF9CD8386",
|
||||
"checksum": "fc94951598b1168d7369152ad3ba2765c0f31d8aa3c63ef7433ffff46cdcf5a9"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.43/cargo-hack-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DE6AFCD460293B",
|
||||
"checksum": "6d2235668e591fdd28c44810553848726602bf8454fa36c31e4b63fc2490be18"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.43/cargo-hack-aarch64-pc-windows-msvc.tar.gz",
|
||||
"etag": "0x8DE6AFC14675438",
|
||||
"checksum": "68fd95d58fb92c550e0629e124002c12a06028494d1e23f91dbe585d89a425ff"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.43/cargo-hack-powerpc64le-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE6AFBAD1A75E3",
|
||||
"checksum": "fadefc0f77f236e2de92373a5c444b6766d419cf6b4204029b90eaf644b04d60"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.43/cargo-hack-riscv64gc-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE6AFBAE8B2B9B",
|
||||
"checksum": "5b3cc06fdbf1224fc0fff56c7fbfb75e440b558621d7b469dba5519dd1d1f425"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.43/cargo-hack-s390x-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DE6AFBBAAF2663",
|
||||
"checksum": "66a59ec733faadaf106ed7dab93040e4b7b4de52fed81f756c6b413e754060ac"
|
||||
}
|
||||
},
|
||||
"0.6.42": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.42/cargo-hack-x86_64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE6615C3E8868C",
|
||||
"checksum": "78092afd4dba89e2df8961bd8bcc844578f9a12a51c51083eed51f0b124c5403"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.42/cargo-hack-x86_64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DE6615C30BC8BF",
|
||||
"checksum": "a0961bad5c31ca644aac5910466cafdf1f706227b74e4748db3aff6ee85d1a72"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.42/cargo-hack-x86_64-pc-windows-msvc.tar.gz",
|
||||
"etag": "0x8DE6615DC552457",
|
||||
"checksum": "05124d9031728ec794f298c55263ec49b57afb39274085da61fd4e7131a6c9f0"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.42/cargo-hack-aarch64-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE6615C2C79259",
|
||||
"checksum": "52e776b1c36c5a01a22d71c48bae81f1cad08d54844c00dccd293735e74ffa95"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.42/cargo-hack-aarch64-apple-darwin.tar.gz",
|
||||
"etag": "0x8DE6615DE8766E2",
|
||||
"checksum": "6aa9dab29f85271f4871b0fdbbbb296bf0bf53794cdeff76566388186a792d9c"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.42/cargo-hack-aarch64-pc-windows-msvc.tar.gz",
|
||||
"etag": "0x8DE6615CC6EDF4E",
|
||||
"checksum": "1ee7fea0cec75813180bf0185cedd11297f031827949bdf1092b60b192b1b72b"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.42/cargo-hack-powerpc64le-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE6615CA7B5B39",
|
||||
"checksum": "350824fbe6ae89ae305ce48bbe17f1e595f1e6dfe3595efe77514531195eeedd"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.42/cargo-hack-riscv64gc-unknown-linux-musl.tar.gz",
|
||||
"etag": "0x8DE6615A98B6DE0",
|
||||
"checksum": "4be5833c1adb103bd0de2ae87f10bee65cf59a17f31fd2ccdbd2f2a432580246"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"url": "https://github.com/taiki-e/cargo-hack/releases/download/v0.6.42/cargo-hack-s390x-unknown-linux-gnu.tar.gz",
|
||||
"etag": "0x8DE6615BFC52DF8",
|
||||
"checksum": "804da3a52ff18b1b184a8f6181ce0fcaee93188edb4a8e690692ed12803f2187"
|
||||
}
|
||||
},
|
||||
"0.6.41": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
42
manifests/cargo-llvm-cov.json
generated
42
manifests/cargo-llvm-cov.json
generated
@@ -31,10 +31,48 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/cargo-llvm-cov/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-llvm-cov/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.8.3"
|
||||
"version": "0.8.4"
|
||||
},
|
||||
"0.8": {
|
||||
"version": "0.8.3"
|
||||
"version": "0.8.4"
|
||||
},
|
||||
"0.8.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE65BA002A078F",
|
||||
"checksum": "6ebea3153495c568651cbb893a7b93f5b648b2ba16415e8cd0a06106a4f80092"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE65BA244DEC8D",
|
||||
"checksum": "f8abe297605aea79978b92e50862104c1ff934d42e14e7bcb02a50934e14a9c5"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE65BA43ACAFB4",
|
||||
"checksum": "21fc84103910716b77b67f9d3d586426296135d81cb27e03d9d914b0078742a3"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE65BA1B10154E",
|
||||
"checksum": "0364061fff9139f9a69badaf110d3e0035befb5ab7ec7a10b19c47af857316d2"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE65BA1BB034D1",
|
||||
"checksum": "559c2475502b3e9c62e29230e32ecb77a8962f54c9ca32854e140fb436ec993e"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE65BA11719F3A",
|
||||
"checksum": "ef32ac2b7cce9ca59f4b1489fd335ebaa10fdbf510b191c5ed79547c677f6dd2"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DE65BA143F97CE",
|
||||
"checksum": "c532aba1ef4b35c7281398db8e2222a2107b0d66f0f2c6c102d056bc7bf97689"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DE65BA0D4F5913",
|
||||
"checksum": "82e59ca81309bc03c5b0b441623545a56e75762be37e154d6a3b3ddaf02fa120"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DE65BA2ED17AC4",
|
||||
"checksum": "07be3aa06087c92b9466b1c4c4d200b3cbb6ba9ad991cc07a556f5f5e7352c2f"
|
||||
}
|
||||
},
|
||||
"0.8.3": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
42
manifests/cargo-minimal-versions.json
generated
42
manifests/cargo-minimal-versions.json
generated
@@ -31,10 +31,48 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/cargo-minimal-versions/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-minimal-versions/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.1.35"
|
||||
"version": "0.1.36"
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.35"
|
||||
"version": "0.1.36"
|
||||
},
|
||||
"0.1.36": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE6AFC0C4234EC",
|
||||
"checksum": "d552f47b217ff77ac211ae506730f6c0ee822b5084c6f7a9c16148994fe9ecc0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE6AFBEC46F5C2",
|
||||
"checksum": "127b5084d895d06949bbf02033f0c6ce98dfe2d13ea8783bec15fd80d54dfe5e"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE6AFC03207836",
|
||||
"checksum": "2dd6c637c644a658744f5d9ba302862c80e68ff6c37e115bcba02cf5451008ac"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE6AFBF84ED324",
|
||||
"checksum": "7eb4c46f08df2889a710f4ca570bc535d99372ecd156138f919c4c5b17555373"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE6AFD0ABC97B7",
|
||||
"checksum": "ba6d67e1e5a11ffd81f4b896099d8a63095b0548900acb391028f6820e1009ce"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE6AFBC085EDED",
|
||||
"checksum": "1c7f3e323c2eb2a6f4a122a0687a2b4d8d71de5c89cccda6356aabc74a434341"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DE6AFC0587BE56",
|
||||
"checksum": "ccc40b864d355e66bbb6d570dc561cf204f592fbdddbf82320ea3a0b7eebb4b0"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DE6AFC06D11ADF",
|
||||
"checksum": "7748301edc592a6ef93768fef1becd29777dab62de699a298a9e25dafee20979"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DE6AFC14F531DE",
|
||||
"checksum": "f85738868242ef526bfb1cd72b8cb9555e2a6425e18f2b93f8d2dd2a9a3fb90b"
|
||||
}
|
||||
},
|
||||
"0.1.35": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
27
manifests/cargo-nextest.json
generated
27
manifests/cargo-nextest.json
generated
@@ -19,10 +19,33 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/nextest-rs/nextest/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/nextest-rs/nextest/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.9.126"
|
||||
"version": "0.9.127"
|
||||
},
|
||||
"0.9": {
|
||||
"version": "0.9.126"
|
||||
"version": "0.9.127"
|
||||
},
|
||||
"0.9.127": {
|
||||
"previous_stable_version": "0.9.126",
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DE6B2F56693476",
|
||||
"checksum": "0a9d356170528ba92a65fd0157ec0445a67d1f7c2c5726085656e55ba8a1b976"
|
||||
},
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE6B2ED81EC9E7",
|
||||
"checksum": "51648aa64c76c87e6357195c9bbb702bda8b2b6fbeeae0960926556b7aea37bc"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE6B2F967EE463",
|
||||
"checksum": "c814033126902b9f06fc5d01651c6dafc634b3a7a27d3ad87a893f749027f661"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE6B30804FF2E7",
|
||||
"checksum": "c00d48d96a5fdbac7664532fa81a07602242f5b9618980350997664d109d222b"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DE6B2E95DD5A04",
|
||||
"checksum": "ce9f682227a131497227f84328e0b2eb36d2a7f43515f867a47bdb35c69516e4"
|
||||
}
|
||||
},
|
||||
"0.9.126": {
|
||||
"previous_stable_version": "0.9.125",
|
||||
|
||||
42
manifests/cargo-no-dev-deps.json
generated
42
manifests/cargo-no-dev-deps.json
generated
@@ -31,10 +31,48 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/cargo-no-dev-deps/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-no-dev-deps/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.2.20"
|
||||
"version": "0.2.21"
|
||||
},
|
||||
"0.2": {
|
||||
"version": "0.2.20"
|
||||
"version": "0.2.21"
|
||||
},
|
||||
"0.2.21": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE6AFC3E8431E1",
|
||||
"checksum": "5a32f020fb678debd1c2af85b6c822714cf9d158a2089cfd2c4e1f2796a41f4f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE6AFD07092CA8",
|
||||
"checksum": "61ae4fea3de88cf32b27395aab176cc3071db35fef73128485d0351c537c2272"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE6AFC76C0DB8B",
|
||||
"checksum": "ed66350f835e95837280312d2eb8e2fe24e47264da67955d57bd93656ec2c597"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE6AFC528E5E70",
|
||||
"checksum": "9e04305a5e8119c103a9d8017192d611d7208192772cf725c49c23ccc44f1881"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE6AFD24C51E90",
|
||||
"checksum": "e2466aa92b2e7454210a4ff8f0e59988fd0d4b471124ee6a483d8aef62564418"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE6AFC57C9635F",
|
||||
"checksum": "54c032f6093a3335e380732907a520857dd327902a56ec1b4e0aeccfed942372"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DE6AFC3ADEA618",
|
||||
"checksum": "6359b49a16172e9c05637d1399535050ebfd40d22330589319372e811375acd5"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DE6AFC6CCE8870",
|
||||
"checksum": "22cd4b624667fa559347f11c2871d43a07f40fe322f25399aa270b7b0706e7ad"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DE6AFC6B65E02E",
|
||||
"checksum": "cf06f516481072b25d017f6b0d5fded19f86f2008ba5aee5c43f80fb25f80062"
|
||||
}
|
||||
},
|
||||
"0.2.20": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
31
manifests/cyclonedx.json
generated
31
manifests/cyclonedx.json
generated
@@ -22,7 +22,36 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/CycloneDX/cyclonedx-cli/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.29.2"
|
||||
"version": "0.30.0"
|
||||
},
|
||||
"0.30": {
|
||||
"version": "0.30.0"
|
||||
},
|
||||
"0.30.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DE68A19FDBA5D3",
|
||||
"checksum": "f89876326620f5fc78a9b27cc1af57d6ed13d019aab87490e1246a44a910babb"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE68A1ABCE684B",
|
||||
"checksum": "1603264fd2968b8d617e48aa7e9cf17bee1d25a8ffe717aec37caf1605a21961"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE68A1A68CD9DF",
|
||||
"checksum": "1f563ba9644d2f2966fc8029fd701ca4af4f388d44c017c1d60559a1ecc9114f"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DE68A1A4F518E5",
|
||||
"checksum": "190da406177311aa1081edd0c717df10271eba7e4356a56215494a70e1a4b459"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE68A1C975B445",
|
||||
"checksum": "dabbaf07e543e7996f708147475e2daa69ddf8a8683c5b06febc7d3f074e5e24"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE68A1A9DB32B2",
|
||||
"checksum": "866809c6e2617c39d0b11713872ae35b88c98941c22dc66d9a4b633fa56db82a"
|
||||
}
|
||||
},
|
||||
"0.29": {
|
||||
"version": "0.29.2"
|
||||
|
||||
24
manifests/martin.json
generated
24
manifests/martin.json
generated
@@ -32,13 +32,31 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/maplibre/martin/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/maplibre/martin/blob/main/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "1.3.0"
|
||||
"version": "1.3.1"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.3.0"
|
||||
"version": "1.3.1"
|
||||
},
|
||||
"1.3": {
|
||||
"version": "1.3.0"
|
||||
"version": "1.3.1"
|
||||
},
|
||||
"1.3.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE69BEEF1273C5",
|
||||
"checksum": "efae063aa2faa85f5ccadb00d5321bb10adeb2b439ef8422a41951f532f68133"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE69BEEEB00219",
|
||||
"checksum": "15c7ae65e14df86f0b70d6c081332beba038cbc421386477fcd6507604d27677"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE69BEEEDE310E",
|
||||
"checksum": "88bdff3fd145c242b047ec70c3ccb57eec19ac1817eb8819d68d840aaca6cc81"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE69BEEEB00219",
|
||||
"checksum": "f7e91fed05a219db1ebc5a6b33c006991fb472a3963b3602c230ee0864748111"
|
||||
}
|
||||
},
|
||||
"1.3.0": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
188
manifests/mise.json
generated
188
manifests/mise.json
generated
@@ -28,13 +28,195 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/jdx/mise/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "2026.2.4"
|
||||
"version": "2026.2.11"
|
||||
},
|
||||
"2026": {
|
||||
"version": "2026.2.4"
|
||||
"version": "2026.2.11"
|
||||
},
|
||||
"2026.2": {
|
||||
"version": "2026.2.4"
|
||||
"version": "2026.2.11"
|
||||
},
|
||||
"2026.2.11": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE6A5CCF811E95",
|
||||
"checksum": "f396f680305ef1546cb65623dab4e48e7666e25ddb33517c60288a1b69d79b73"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE6A5CD43ECFA0",
|
||||
"checksum": "d4f88990f9e9bf16cac1b87135c3f8bb94fbdf3c3d2c39d45acc44bbd788f9f4"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE6A5CD569F132",
|
||||
"checksum": "099fc24154ed2d44fea9edd6a08465f32d5be425acd1c2375a53281e9f9f49e7"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE6A5CC817C92E",
|
||||
"checksum": "f06b71a3f59b3b8478b8f3767db53696dbd28154e2d62c657287a10dce3d5392"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE6A5CD2A9A3BC",
|
||||
"checksum": "bf93ff18c6bc52bfc321a7968053571537224e4d3ed38203ec504ddbdcd50d6a"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE6A5CD545068C",
|
||||
"checksum": "62b92064b3f1e77ad7a8a7233b0f32025370e22fe9835903934edc2283a3f957"
|
||||
}
|
||||
},
|
||||
"2026.2.10": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE69E5F2D14B42",
|
||||
"checksum": "cb1f06969bf020a5b5d35780e09f6f9316c499c337081771404b42549493ab32"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE69E5F4E59F2B",
|
||||
"checksum": "c247d61a2e47bfa1820f3a4ec27b7d8c0f21fce370e94172ee6cdfab80c8d073"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE69E5F5D3398C",
|
||||
"checksum": "d320e1d0b675a83a9ea44d7f9956650e2dc0d5068cf91f970bb2e516bc789c8f"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE69E5EFA7B642",
|
||||
"checksum": "1324b2965b97b057546d7d90bb64edfbd039ded690c78e58c305e5352207920a"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE69E5F44A5C0D",
|
||||
"checksum": "c2f1316305a515242e7618409f6118cc779c96cd7c84b130cd7a70d5b5bd5f15"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE69E5F5BA4F5F",
|
||||
"checksum": "9b3d550934f58097eb06913ee626b7320be7c222736625cff365a5186b197727"
|
||||
}
|
||||
},
|
||||
"2026.2.9": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE689BE32A59FC",
|
||||
"checksum": "6a20d73f01439c04dd06b711ef06f753278dcfb1146350acc89fe7863af03077"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE689BE635B257",
|
||||
"checksum": "fcc6b91b993ea52e2b064fda54301fd0ffdd4bab102eaf7ccc59ec9b99a13d39"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE689BE7234C5A",
|
||||
"checksum": "ee57ac35653c710a424c5f690f85ee5ce3921992bd3793835865ac50d450b086"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE689BDE9451F9",
|
||||
"checksum": "341e0ff2eb967ba502dc7bdd7457c4a536714a54684b7bdf1946dc4287689ca0"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE689BE56E60F5",
|
||||
"checksum": "5bfa886a537e07e50089712d6b0fa46bb1a37b08f218c4878d6a2e715e1cefd1"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE689BE6D5D1C1",
|
||||
"checksum": "332d2c4023c0f70717e92f3bd357479fc703519a98d4db8969554e7564c8a6a0"
|
||||
}
|
||||
},
|
||||
"2026.2.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE67CCEBAB42CD",
|
||||
"checksum": "b98f0e59347cfc5e39f2e4e643069dcc775c8b161850b89d02c884c7768e67df"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE67CCED89F601",
|
||||
"checksum": "01fcb2600aff54f09ed009cc1c345b05379bd0b0424296973d32974788192dd7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE67CCEE5FDD4B",
|
||||
"checksum": "a6e7201f66b41ee668861538a7e48cd8021fde406dd83396c494b7277d943577"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE67CCE893C200",
|
||||
"checksum": "c76a3016bb5133fa6115fa9ad3994746d0ff7e8151b0ed9a3270838680fbecc2"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE67CCECC4025E",
|
||||
"checksum": "135b686641f4220224660492f0a8dd71de6ca8e0573e4c5f75c71be8127492f2"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE67CCEE106905",
|
||||
"checksum": "d312d15a0ce02651a52fb0f8191772b1663718257fdedec37fc65acfbb1bded4"
|
||||
}
|
||||
},
|
||||
"2026.2.7": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE66FF13876AFD",
|
||||
"checksum": "e5306ee81b476a2c840923393e11ae8dedb19948f2e353093e783b96a017b1a7"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE66FF164CE25F",
|
||||
"checksum": "26562af6472838fc68fe2fe9dfe8defee964c07a02c7b4d32bbcc960975fa0a1"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE66FF16E90EE0",
|
||||
"checksum": "3ce4f3bf6f350c12e96d6d7dfacfd88e7158b5779a5d9bde6cb097182d02736b"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE66FF0EC3CDCC",
|
||||
"checksum": "336bdeef7e2c0177a8b09662c83a90f2626527d203d01fd7fc9e4dba2ebbe77b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE66FF15519BD8",
|
||||
"checksum": "e220a873e36c7d8b866518c2728db8f58836dc9e1301c73c8f889577f2a0b4bf"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE66FF16836C6C",
|
||||
"checksum": "91153428a4b486b09836087e1edfa86d07c5e5046344a9f3ded54101e21ad608"
|
||||
}
|
||||
},
|
||||
"2026.2.6": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE6637355D6551",
|
||||
"checksum": "6b5b39197f4c421bbb1de8970c334cef1c86d6f0a15c9e7e88999c57224ecb7f"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE6637376A2091",
|
||||
"checksum": "52195eb5f7defb5822c0aeaffaa74e30c081abeca123cce14ee89b1eec6a45d3"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE663737C4105C",
|
||||
"checksum": "86fcdece58f010070a274471e82845fb1507bf2755efa140b7b3e044e7e8e5d1"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE663732B408CB",
|
||||
"checksum": "c2ee72c1284bab554fa79195cacf4586ebc483bce1c58268999e7bd3635023e9"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE663736A9A4FE",
|
||||
"checksum": "93bff864045ab70682de371827e726df74e092adb858fc85b67537d2816b1dc8"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE663737AC5D3E",
|
||||
"checksum": "f27d1ad5d886f52b3cf7749175b588adf8aab2869b2c61946525851b72264551"
|
||||
}
|
||||
},
|
||||
"2026.2.5": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE65704A9E6487",
|
||||
"checksum": "0054a72ac375492438f1069d4e2ce1840bf4e39fcf7dc8134ce96868f39d79ae"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE65704F2C1338",
|
||||
"checksum": "994f8538db7f104ca25cfde69a4fbca152566930f9eaa4e12547ea610c3ee131"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE6570503EBF09",
|
||||
"checksum": "2572be94f2793047021ef6ba402ce897163a514b6fd94fcd66f8c12b2a61da82"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE6570442518E3",
|
||||
"checksum": "1911ce2fa4ecd684b74bbc5b57001de1b55e032c847aa8a31caef3b47ca57357"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE65704D9F4283",
|
||||
"checksum": "b70b0d034904cc1c275a90f346337b559dc4fd00fca0398d65515893a9fcfd88"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE657050380FCC",
|
||||
"checksum": "29c65fe3e60402044f4a267dfb75eceef7d6707781d2f0e8681519b3b3321c9a"
|
||||
}
|
||||
},
|
||||
"2026.2.4": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
38
manifests/osv-scanner.json
generated
38
manifests/osv-scanner.json
generated
@@ -3,13 +3,45 @@
|
||||
"template": null,
|
||||
"license_markdown": "[Apache-2.0](https://github.com/google/osv-scanner/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "2.3.2"
|
||||
"version": "2.3.3"
|
||||
},
|
||||
"2": {
|
||||
"version": "2.3.2"
|
||||
"version": "2.3.3"
|
||||
},
|
||||
"2.3": {
|
||||
"version": "2.3.2"
|
||||
"version": "2.3.3"
|
||||
},
|
||||
"2.3.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.3/osv-scanner_linux_amd64",
|
||||
"etag": "0x8DE69CAD5311860",
|
||||
"checksum": "777b4bb7ddd10bdcc8a1aa398d37d05e91e866e7586f9cff3fca2f72b8153033"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.3/osv-scanner_darwin_amd64",
|
||||
"etag": "0x8DE69CAD4300C11",
|
||||
"checksum": "a188059bb2046bb65ff5ba1b5beec95fea1096b873c227b629fe02f550a6e339"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.3/osv-scanner_windows_amd64.exe",
|
||||
"etag": "0x8DE69CAD3E7E2A1",
|
||||
"checksum": "8a41dcb9377937e78299fbb22f494f69019002b79a0c18d174de621b0638ae46"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.3/osv-scanner_linux_arm64",
|
||||
"etag": "0x8DE69CAD537C793",
|
||||
"checksum": "0a503893df39863edc65edef01fd6d82b45c6e47fa9132538593d5a2d33f2616"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.3/osv-scanner_darwin_arm64",
|
||||
"etag": "0x8DE69CAD3E6D261",
|
||||
"checksum": "ef72b1af51ee4c72dcf7286771353b363e5901c998020f41ac0079fb50026fa0"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"url": "https://github.com/google/osv-scanner/releases/download/v2.3.3/osv-scanner_windows_arm64.exe",
|
||||
"etag": "0x8DE69CAD3B32B51",
|
||||
"checksum": "3c29b84b496d10a2932724a540e4594b35750840d20bf416edcaf32a6cddf326"
|
||||
}
|
||||
},
|
||||
"2.3.2": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
42
manifests/parse-dockerfile.json
generated
42
manifests/parse-dockerfile.json
generated
@@ -31,10 +31,48 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/taiki-e/parse-dockerfile/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/parse-dockerfile/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.1.3"
|
||||
"version": "0.1.4"
|
||||
},
|
||||
"0.1": {
|
||||
"version": "0.1.3"
|
||||
"version": "0.1.4"
|
||||
},
|
||||
"0.1.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE698A3B4092E8",
|
||||
"checksum": "2ee28fd2e807ace8edb6fbb2df063791d7c23d4e926f9806a175bb1d0a37d846"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE698A334E80E1",
|
||||
"checksum": "117dd15cf58785ed9ab30f73d192663ac37e744acd3befe50116ede6c8c85d49"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE698A4B6BD684",
|
||||
"checksum": "d97f0f18b3a214f4b054b4306541910b24c1a1a980ad3eca2e2925ea6d75d579"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE698A3ADBB2AD",
|
||||
"checksum": "e08dcabec80d9bd9e06730e3c58eb466fd8023564a9c1862af5423367e6cef20"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE698A350173FF",
|
||||
"checksum": "db836ffb2b891ca5b1b6e4060102e73ac4aad4513e271fdd2255f79977a4b263"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE698A4AC4B946",
|
||||
"checksum": "4a02b72c58b60beb39fd8613f4427d48ca2a9bf0cb021c342434aa1649e9af42"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DE698A38375889",
|
||||
"checksum": "5293e81f63885c3b9e6cefea81031608d4fdb5e65fdda46a406f8b290e80476f"
|
||||
},
|
||||
"riscv64_linux_musl": {
|
||||
"etag": "0x8DE698A384EE4BA",
|
||||
"checksum": "2fa01a64f99a330e4bec5625ea280044873d2f693f2560b1089128506149a6ca"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DE698A3F57EB51",
|
||||
"checksum": "c7782bfc23116d2205281990259464c6bba94033e6230d2b48487e3cb7e05334"
|
||||
}
|
||||
},
|
||||
"0.1.3": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
38
manifests/prek.json
generated
38
manifests/prek.json
generated
@@ -40,10 +40,44 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/j178/prek/blob/master/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.3.1"
|
||||
"version": "0.3.2"
|
||||
},
|
||||
"0.3": {
|
||||
"version": "0.3.1"
|
||||
"version": "0.3.2"
|
||||
},
|
||||
"0.3.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE6586D32CBC7E",
|
||||
"checksum": "7960379beca845367258ce4080a0ce1754d88846d9cfe273106f272442729eff"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE6586D2B4DF28",
|
||||
"checksum": "4bdf9b59530b7593a3f5d8dcce43c67e442a79af730cbd1b73c223ef30b5c1b5"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE6586D2BF5AA1",
|
||||
"checksum": "4aaf87523d3588090a6f547a5eca379264ddb287e3a424a1fab73aca6cd9c0c0"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE6586D132B103",
|
||||
"checksum": "fce387f0c31e87ceebb1ae84ad5fe3502931b248c89cfe5ee8208dcfa0656260"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE6586D0DC18E3",
|
||||
"checksum": "9705b3e3df6db7f1128058fb4f5198736553e6c3957afe0810fa7e974679c88c"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE6586D0D2FB62",
|
||||
"checksum": "14694b2623fffa38402dbdc1c2208c91400557fd44f7083160853e6027b125d7"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DE6586D269372A",
|
||||
"checksum": "12d2b34adba08841c8b0f3118e382b9dc3ce291c6e1db3a044a57c0ed210db4e"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DE6586D27FD9FF",
|
||||
"checksum": "cdc6ded593a3e132d7d5f55ab9c27028108a905e2b150fe92d72b94256330541"
|
||||
}
|
||||
},
|
||||
"0.3.1": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
26
manifests/release-plz.json
generated
26
manifests/release-plz.json
generated
@@ -22,10 +22,32 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/release-plz/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/release-plz/release-plz/blob/main/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "0.3.154"
|
||||
"version": "0.3.155"
|
||||
},
|
||||
"0.3": {
|
||||
"version": "0.3.154"
|
||||
"version": "0.3.155"
|
||||
},
|
||||
"0.3.155": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE6514E31EAA56",
|
||||
"checksum": "0ebd40f1b9e30b8f5bdb7038f1927aa997c58541211360b8feec840bf21151e7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE651592307499",
|
||||
"checksum": "de3ec1fe45b485284c9dd20835ce57d3533c33060a0af2f5f755d625900a7930"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE651522C5DC84",
|
||||
"checksum": "c43b8e80464a49f01cc29c12c391ffc4aaf3d030ad8ec2441ae84beaa8fe665d"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE65151065D33D",
|
||||
"checksum": "4279ec599f1157060003937547e2cd9bd3276ee5f9743ab51b3918de0a95a407"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE6515B4EACA62",
|
||||
"checksum": "c22e41ea97ffec4c3970db13ca333fe63704373eaecbb7feed552aa35db45c1b"
|
||||
}
|
||||
},
|
||||
"0.3.154": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
31
manifests/sccache.json
generated
31
manifests/sccache.json
generated
@@ -28,7 +28,36 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/mozilla/sccache/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.13.0"
|
||||
"version": "0.14.0"
|
||||
},
|
||||
"0.14": {
|
||||
"version": "0.14.0"
|
||||
},
|
||||
"0.14.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE67ED6CAA0762",
|
||||
"checksum": "8424b38cda4ecce616a1557d81328f3d7c96503a171eab79942fad618b42af44"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE67ED6AD92778",
|
||||
"checksum": "f86c5ecf9b9a1aee53022601725c5cea0e1d9318d80a8233017101063936ab62"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE67ED6BB8C7B5",
|
||||
"checksum": "22c5030437639b15b138e9cd082db8eedf9d8b1a0de05b6072b53f819ea9d299"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE67ED656BD8EE",
|
||||
"checksum": "62a6c942c47c93333bc0174704800cef7edfa0416d08e1356c1d3e39f0b462f2"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE67ED6393873A",
|
||||
"checksum": "a781e8018260ab128e7690d8497736fa231b6ca895d57131d5b5b966ca987594"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE67ED6470B953",
|
||||
"checksum": "b416e81f946c607467c5383022842649569d73f468a8e42b4536998e3d784224"
|
||||
}
|
||||
},
|
||||
"0.13": {
|
||||
"version": "0.13.0"
|
||||
|
||||
37
manifests/syft.json
generated
37
manifests/syft.json
generated
@@ -32,10 +32,43 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/anchore/syft/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "1.41.2"
|
||||
"version": "1.42.0"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.41.2"
|
||||
"version": "1.42.0"
|
||||
},
|
||||
"1.42": {
|
||||
"version": "1.42.0"
|
||||
},
|
||||
"1.42.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE68CB5EAEDD3E",
|
||||
"checksum": "23bec7de5db0ba05590c676a338a8cd49e635df63e6c404c34d437e2c57f1a77"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE68CB5E6F8381",
|
||||
"checksum": "675824f08b63e609ba077f2d4684510ac6bd7bd71db8b1a6c6f2d59d3b6450df"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE68CB5E712F54",
|
||||
"checksum": "4c2b0ef868c4fdc602257089ac73a1b8b4c3c1099b809d80e81ae7f6488fff32"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE68CB5DDF09C3",
|
||||
"checksum": "cbc39a5f29b0bd32c1bf6bf61c363373f20a1be39dd901e1869228d42d082121"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE68CB5E70BAAB",
|
||||
"checksum": "eb5faccd882a1d45fb25a07848bef652e27ff141bc656dca83a250211c2036fc"
|
||||
},
|
||||
"powerpc64le_linux_musl": {
|
||||
"etag": "0x8DE68CB5DCFB1BD",
|
||||
"checksum": "5eb490e2ee959603b50d6353f190164b7cc2428c8cb7931c91646fbf550fe04c"
|
||||
},
|
||||
"s390x_linux_musl": {
|
||||
"etag": "0x8DE68CB5EABAC84",
|
||||
"checksum": "7283d35fd50655e008ba18df182a496638c881eda8aa8aafc0b395c51db2121c"
|
||||
}
|
||||
},
|
||||
"1.41": {
|
||||
"version": "1.41.2"
|
||||
|
||||
30
manifests/tombi.json
generated
30
manifests/tombi.json
generated
@@ -22,10 +22,36 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/tombi-toml/tombi/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.7.27"
|
||||
"version": "0.7.28"
|
||||
},
|
||||
"0.7": {
|
||||
"version": "0.7.27"
|
||||
"version": "0.7.28"
|
||||
},
|
||||
"0.7.28": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE671880BB6465",
|
||||
"checksum": "6162c119f1109e131e466eac50f9fce3bf7b260b78a3956a8062cc6b2a973312"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE6718817CC964",
|
||||
"checksum": "b09dd3423f2e9304f25f0c741cde7b3aacf65390d233da7ab6e10abd73deec73"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE6718810670E7",
|
||||
"checksum": "4f506405a97cf4cd5a8e7b6720e7633eda550248823a651de91b63880ba8f034"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE671880A8B4B7",
|
||||
"checksum": "4fbfc0135e38eb3669134cef3021a8881155170728fe207fec19c4ecc993966f"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE671880B80CC9",
|
||||
"checksum": "8c3b905339793b7f9bff7c7a055e523111ba6f957781ffb2d37af928ef4e9af2"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE671880B833A5",
|
||||
"checksum": "4f9facbf27c021eafc03e957cc9d5cabdb76786221bdde44a205b290da7c750f"
|
||||
}
|
||||
},
|
||||
"0.7.27": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
72
manifests/typos.json
generated
72
manifests/typos.json
generated
@@ -22,13 +22,79 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "1.43.1"
|
||||
"version": "1.43.4"
|
||||
},
|
||||
"1": {
|
||||
"version": "1.43.1"
|
||||
"version": "1.43.4"
|
||||
},
|
||||
"1.43": {
|
||||
"version": "1.43.1"
|
||||
"version": "1.43.4"
|
||||
},
|
||||
"1.43.4": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE67E6F87AEE49",
|
||||
"checksum": "f05f9da84ba714789271a2915060f8b7d329411b5c11e83b8d2c367ef592036c"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE67E72B2003AB",
|
||||
"checksum": "24e104185f1522d1906f7e8299e43e39faefe527dbe73b163cfaadad8012a113"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE67E74CEF9B0A",
|
||||
"checksum": "6f1e5688724d347bfbb6419cc76c364b54a97afef75cdbcf02cc838852dbb6cd"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE67E6EF474661",
|
||||
"checksum": "7eeb93b5dbd4590ef60f6a09ab94e0dae70d2f333c0447284f1cad0379786f5b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE67E73DF4DD13",
|
||||
"checksum": "bd5b1e04de8710813464cc510fd33a2e4a797320901d23f49042e1d1863ef023"
|
||||
}
|
||||
},
|
||||
"1.43.3": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE6598F9C40E84",
|
||||
"checksum": "ac2d3da42920f7d39576216eb85bf7db763d7ae13722bf0851413261cac741cf"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE65991DFE690A",
|
||||
"checksum": "e80c8b0363ef45c1c94034625a4f4ae04491a730d5b98d328ad741e1335f1283"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE65993DAE6E3D",
|
||||
"checksum": "bf1fc2ed155127fa87cca48212768d5ef41757b89da454df59945adeb123aed5"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE6598EF7FB49E",
|
||||
"checksum": "5affbe821f734fea0f5ed67940d0294fde7a87a57980c64354879d0d6922d86f"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE65993D485756",
|
||||
"checksum": "850b28c935767e37dee53fd5827c46477ab49cfbac1b36b13da76e242197109d"
|
||||
}
|
||||
},
|
||||
"1.43.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE6501406958C8",
|
||||
"checksum": "b29faf57594da04340c7825b587038f8800c6471ac12a1302c38fc9b95f711b9"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE650155392585",
|
||||
"checksum": "b6f093d3b13353d36e5e2c406f35f460f47db62a8557d0d1fd9e79a7b9d3c303"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE65017CF0A15E",
|
||||
"checksum": "841959368d2642e8506cf84ce63383d36430198de7b7ce8a0fae388c2314195d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE65015EA5EC9D",
|
||||
"checksum": "0400b079af70ef4df86345f879e558937d80aeedbb262b11aff89538c7c9fd1e"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE6501AB0E68B7",
|
||||
"checksum": "a878bd38a0860b64dbc92f38c4fc5bef00f70a877d44650d7f1e0a28cd19877b"
|
||||
}
|
||||
},
|
||||
"1.43.1": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
80
manifests/uv.json
generated
80
manifests/uv.json
generated
@@ -40,10 +40,86 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/astral-sh/uv/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/astral-sh/uv/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.10.0"
|
||||
"version": "0.10.2"
|
||||
},
|
||||
"0.10": {
|
||||
"version": "0.10.0"
|
||||
"version": "0.10.2"
|
||||
},
|
||||
"0.10.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE68D97A0ACC48",
|
||||
"checksum": "c162182ba7dd692794362d76dd183990d6e51553217954106da19bdb6ced211b"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE68D9798C8D0B",
|
||||
"checksum": "3cdbd038333cfe861ce04f3d91678547bf2e726224acf5f42d3f0affa6740e19"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE68D979E37342",
|
||||
"checksum": "493ebbe0e06128d6ee4905e1ed5e2a433fb0f7cfc08b0eaca9fab4ca76778ae1"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE68D97746D797",
|
||||
"checksum": "685e47f8f88b6845a9fc2ca27c3d246c0f53af8c017daf8e98ac0a97fe20365b"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE68D97694F118",
|
||||
"checksum": "3828b2de196687f60e9d199aea8b504299629300831eea0935ff3fe339903d0a"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE68D976C5B56A",
|
||||
"checksum": "826e4ee3a03ec245e54c449e272fdf8aab749e039cc49c950ad43cc13702221f"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DE68D978DC048C",
|
||||
"checksum": "9b7f8e3ced416276a9e6321369f69234552d9cbf39d68d96a67e85cee4cd611f"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DE68D979289622",
|
||||
"checksum": "1ad005a361293175170f3c193b50d5a5c7f1da631649236cd857721ce8c9cbde"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DE68D9794269C9",
|
||||
"checksum": "d4832c85f3e8e17f7ae4ced90059dc2b6927939a47fea3e92e5712e7148b9c09"
|
||||
}
|
||||
},
|
||||
"0.10.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE689A8616BF52",
|
||||
"checksum": "d1a3b08dd9abf9e500541cadd0e2f4b144c99b9265fb00e500c2b5c82a3b4ee8"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE689A8578C054",
|
||||
"checksum": "f61f1122193698a53fc2d4cc6fb5a5849b283817509778ac8f1a7d2a36a218de"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE689A85AFBEF6",
|
||||
"checksum": "64c297ef1cd8e3a50966dee20cbe039564cd59e41186e0d1dd38fa4e627fc285"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE689A8341A2F8",
|
||||
"checksum": "ae9ae536be5b4d1cf7a6560d52a20711f267e7b21e23ee6cc538a4afa236b757"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE689A82A6ADCC",
|
||||
"checksum": "37c101cd8a745a43d69bc3832c41866ab721467a1d58881f57b73b705abc2851"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE689A83112C9C",
|
||||
"checksum": "9644d0e37c41c19aa65137a928bf6fad78dc887f820202c0cfcf010cceb416a0"
|
||||
},
|
||||
"powerpc64le_linux_gnu": {
|
||||
"etag": "0x8DE689A84FE74D1",
|
||||
"checksum": "aa2ed9587a9ad5127662da9ceccaa747b941f37cbd9e6d9334c7c6c3286c9587"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DE689A850E4188",
|
||||
"checksum": "bda96a9ff8be79f780ff4711a2515061fe80d6f135ba55a47c41e1c6739d048e"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DE689A853096EC",
|
||||
"checksum": "091eeeecfcdb15a954f2488be6b89d8709709003ada81d215d6ca88145826049"
|
||||
}
|
||||
},
|
||||
"0.10.0": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
30
manifests/vacuum.json
generated
30
manifests/vacuum.json
generated
@@ -22,10 +22,36 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/daveshanley/vacuum/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "0.23.7"
|
||||
"version": "0.23.8"
|
||||
},
|
||||
"0.23": {
|
||||
"version": "0.23.7"
|
||||
"version": "0.23.8"
|
||||
},
|
||||
"0.23.8": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DE658F95274F22",
|
||||
"checksum": "05952794613c354601a95ceaebcdd0c12fd785240475bd7f9637e9fe0a3b498a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DE658F9539B103",
|
||||
"checksum": "093937ce214eac93e31f7642977499f6985df3ef13b9139f2b3e2eeb43a994aa"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DE658F9612EFEB",
|
||||
"checksum": "e99e5d45e7be31109c7c4543af1aa396602e3a5104e1001450cb4f72ff6c70d4"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DE658F96090FFF",
|
||||
"checksum": "79fca217c8430fc4306981146e953cd143e2fb9c8dfbcd11f35c391de3b61bc9"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DE658F9607D8DB",
|
||||
"checksum": "6ccf98a8779147f655959634f57e6bd9d979fc817107afd0535376208ad14546"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DE658F951C380B",
|
||||
"checksum": "f3ac70032938c8bb98896fae17d5367402d1583d23608b52baeecf600ea341f1"
|
||||
}
|
||||
},
|
||||
"0.23.7": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
@@ -16,7 +16,7 @@ serde_derive = "1"
|
||||
serde_json = "1"
|
||||
spdx = "0.13"
|
||||
tar = "0.4"
|
||||
toml = { version = "0.9", default-features = false, features = ["parse", "serde"] }
|
||||
toml = { version = "1", default-features = false, features = ["parse", "serde"] }
|
||||
# TODO: call curl command instead of using ureq?
|
||||
ureq = { version = "2", features = ["json"] }
|
||||
|
||||
|
||||
@@ -4,12 +4,15 @@
|
||||
Structured access to the install-action manifests.
|
||||
*/
|
||||
|
||||
#![no_std]
|
||||
#![doc(test(
|
||||
no_crate_inject,
|
||||
attr(
|
||||
deny(warnings, rust_2018_idioms, single_use_lifetimes),
|
||||
allow(dead_code, unused_variables)
|
||||
)
|
||||
attr(allow(
|
||||
dead_code,
|
||||
unused_variables,
|
||||
clippy::undocumented_unsafe_blocks,
|
||||
clippy::unused_trait_names,
|
||||
))
|
||||
))]
|
||||
#![warn(
|
||||
// Lints that may help when writing public library.
|
||||
@@ -26,8 +29,13 @@ Structured access to the install-action manifests.
|
||||
#![allow(clippy::missing_panics_doc, clippy::too_long_first_doc_paragraph)]
|
||||
|
||||
extern crate alloc;
|
||||
extern crate std;
|
||||
|
||||
use alloc::collections::BTreeMap;
|
||||
use alloc::{
|
||||
collections::BTreeMap,
|
||||
string::{String, ToString as _},
|
||||
vec::Vec,
|
||||
};
|
||||
use core::{
|
||||
cmp::{self, Reverse},
|
||||
fmt, slice,
|
||||
|
||||
@@ -894,10 +894,19 @@ EOF
|
||||
for job in $(jq -c '.jobs | to_entries[] | select(.value.steps)' <<<"${workflow}"); do
|
||||
name=$(jq -r '.key' <<<"${job}")
|
||||
job=$(jq -r '.value' <<<"${job}")
|
||||
eval "$(jq -r '@sh "RUNS_ON=\(."runs-on") TIMEOUT_MINUTES=\(."timeout-minutes") JOB_DEFAULT_SHELL=\(.defaults.run.shell)"' <<<"${job}")"
|
||||
if [[ "${TIMEOUT_MINUTES}" == 'null' ]]; then
|
||||
error ".jobs.${name}.timeout-minutes must be set"
|
||||
fi
|
||||
if [[ "${RUNS_ON}" == 'ubuntu-slim' ]]; then
|
||||
case "${TIMEOUT_MINUTES}" in
|
||||
? | 1[0-5]) ;;
|
||||
*) error ".jobs.${name}.timeout-minutes must be <= 15 because max execution time of ubuntu-slim runner is 15 minutes" ;;
|
||||
esac
|
||||
fi
|
||||
n=0
|
||||
job_default_shell=$(jq -r '.defaults.run.shell' <<<"${job}")
|
||||
if [[ "${job_default_shell}" == 'null' ]]; then
|
||||
job_default_shell="${default_shell}"
|
||||
if [[ "${JOB_DEFAULT_SHELL}" == 'null' ]]; then
|
||||
JOB_DEFAULT_SHELL="${default_shell}"
|
||||
fi
|
||||
for step in $(jq -c '.steps[]' <<<"${job}"); do
|
||||
prepare=''
|
||||
@@ -908,7 +917,7 @@ EOF
|
||||
fi
|
||||
if [[ "${shell}" == 'null' ]]; then
|
||||
if [[ -z "${prepare}" ]]; then
|
||||
shell="${job_default_shell}"
|
||||
shell="${JOB_DEFAULT_SHELL}"
|
||||
elif grep -Eq '^ *chsh +-s +[^ ]+/bash' <<<"${prepare}"; then
|
||||
shell='bash'
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user