mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-13 15:50:50 +00:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
df5e716edf | ||
|
|
9081a21d93 | ||
|
|
4772f78be9 | ||
|
|
64e43f34b0 | ||
|
|
7959d3152f | ||
|
|
6cd93b2dae | ||
|
|
8adeb5bc7d |
1
.github/.cspell/project-dictionary.txt
vendored
1
.github/.cspell/project-dictionary.txt
vendored
@@ -19,7 +19,6 @@ pwsh
|
|||||||
quickinstall
|
quickinstall
|
||||||
rdme
|
rdme
|
||||||
sccache
|
sccache
|
||||||
shellcheck
|
|
||||||
shfmt
|
shfmt
|
||||||
syft
|
syft
|
||||||
udeps
|
udeps
|
||||||
|
|||||||
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@@ -55,7 +55,7 @@ jobs:
|
|||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
steps:
|
steps:
|
||||||
- uses: taiki-e/github-actions/checkout@main
|
- uses: taiki-e/checkout-action@v1
|
||||||
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
||||||
- run: rm Cargo.toml
|
- run: rm Cargo.toml
|
||||||
- name: Generate tool list
|
- name: Generate tool list
|
||||||
@@ -130,7 +130,7 @@ jobs:
|
|||||||
run: apk --no-cache add bash cargo
|
run: apk --no-cache add bash cargo
|
||||||
shell: sh
|
shell: sh
|
||||||
if: startsWith(matrix.container, 'alpine')
|
if: startsWith(matrix.container, 'alpine')
|
||||||
- uses: taiki-e/github-actions/checkout@main
|
- uses: taiki-e/checkout-action@v1
|
||||||
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
# cross attempts to install rust-src when Cargo.toml is available even if `cross --version`
|
||||||
- run: rm Cargo.toml
|
- run: rm Cargo.toml
|
||||||
- name: Generate tool list
|
- name: Generate tool list
|
||||||
@@ -145,7 +145,7 @@ jobs:
|
|||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
container: ubuntu:22.04
|
container: ubuntu:22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: taiki-e/github-actions/checkout@main
|
- uses: taiki-e/checkout-action@v1
|
||||||
- name: Generate tool list
|
- name: Generate tool list
|
||||||
id: tool-list
|
id: tool-list
|
||||||
run: tools/ci/tool-list.sh >>"${GITHUB_OUTPUT}"
|
run: tools/ci/tool-list.sh >>"${GITHUB_OUTPUT}"
|
||||||
@@ -160,7 +160,7 @@ jobs:
|
|||||||
contents: write
|
contents: write
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
steps:
|
steps:
|
||||||
- uses: taiki-e/github-actions/checkout@main
|
- uses: taiki-e/checkout-action@v1
|
||||||
- name: Install Rust
|
- name: Install Rust
|
||||||
run: rustup toolchain add nightly --no-self-update && rustup default nightly
|
run: rustup toolchain add nightly --no-self-update && rustup default nightly
|
||||||
- run: tools/manifest.sh
|
- run: tools/manifest.sh
|
||||||
|
|||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -20,7 +20,7 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- uses: taiki-e/github-actions/checkout@main
|
- uses: taiki-e/checkout-action@v1
|
||||||
- uses: taiki-e/create-gh-release-action@v1
|
- uses: taiki-e/create-gh-release-action@v1
|
||||||
with:
|
with:
|
||||||
changelog: CHANGELOG.md
|
changelog: CHANGELOG.md
|
||||||
|
|||||||
12
CHANGELOG.md
12
CHANGELOG.md
@@ -10,6 +10,14 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.28.7] - 2024-03-09
|
||||||
|
|
||||||
|
- Update `just@latest` to 1.25.0.
|
||||||
|
|
||||||
|
## [2.28.6] - 2024-03-08
|
||||||
|
|
||||||
|
- Update `biome@latest` to 1.6.0.
|
||||||
|
|
||||||
## [2.28.5] - 2024-03-08
|
## [2.28.5] - 2024-03-08
|
||||||
|
|
||||||
- Update `shellcheck@latest` to 0.10.0.
|
- Update `shellcheck@latest` to 0.10.0.
|
||||||
@@ -1859,7 +1867,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.28.5...HEAD
|
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.28.7...HEAD
|
||||||
|
[2.28.7]: https://github.com/taiki-e/install-action/compare/v2.28.6...v2.28.7
|
||||||
|
[2.28.6]: https://github.com/taiki-e/install-action/compare/v2.28.5...v2.28.6
|
||||||
[2.28.5]: https://github.com/taiki-e/install-action/compare/v2.28.4...v2.28.5
|
[2.28.5]: https://github.com/taiki-e/install-action/compare/v2.28.4...v2.28.5
|
||||||
[2.28.4]: https://github.com/taiki-e/install-action/compare/v2.28.3...v2.28.4
|
[2.28.4]: https://github.com/taiki-e/install-action/compare/v2.28.3...v2.28.4
|
||||||
[2.28.3]: https://github.com/taiki-e/install-action/compare/v2.28.2...v2.28.3
|
[2.28.3]: https://github.com/taiki-e/install-action/compare/v2.28.2...v2.28.3
|
||||||
|
|||||||
27
manifests/biome.json
generated
27
manifests/biome.json
generated
@@ -35,10 +35,33 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.5.3"
|
"version": "1.6.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.5.3"
|
"version": "1.6.0"
|
||||||
|
},
|
||||||
|
"1.6": {
|
||||||
|
"version": "1.6.0"
|
||||||
|
},
|
||||||
|
"1.6.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"checksum": "4a76d09b1c06c3b7c486e99c899076d4f60f8b34d0bb9b41a61abee16345a99c"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"checksum": "4cf6468c39e3eb45a5bfc4d65365d1b748470d0f97235471263ef7dd66b2bae5"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"checksum": "43a2df63d8bc3c1afe3560d9a2c4629d6961d31b99d251446ce359e1ce7844dd"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"checksum": "7897c55191a8c500107764102c0cc5e29f5817829cd4eda6d9e1236aec95cdf7"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"checksum": "396602d624fe1a68a6ea59a4d75bd43d2643f9283c543e240a86fbd3d21192b6"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"checksum": "04e5fb6d337f468ab50fae1d2586dd210a8d6adb2cf4879011119b1dcb8446a1"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.5": {
|
"1.5": {
|
||||||
"version": "1.5.3"
|
"version": "1.5.3"
|
||||||
|
|||||||
21
manifests/just.json
generated
21
manifests/just.json
generated
@@ -18,14 +18,29 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.24.0"
|
"version": "1.25.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.24.0"
|
"version": "1.25.0"
|
||||||
|
},
|
||||||
|
"1.25": {
|
||||||
|
"version": "1.25.0"
|
||||||
},
|
},
|
||||||
"1.25.0": {
|
"1.25.0": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
"checksum": "339393fc6a0e003eea51d0206060765c7ee5daa6bea5e2fb1056958ee6ca9b10"
|
"checksum": "1eeda5d8b319ce7868ee43748687f849e5a9ec2d03f64e0ebeda05af08f67af4"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"checksum": "fbf2ef5ab53470c9fbce7f76b87008145addea90671148850e01ac204e3b461b"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"checksum": "76a99c45395ccae0c2e8d95886c7059fde8f2f6cb25c697f55fd9252fe4930ea"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"checksum": "c73a41acce0f0913405e33009d60645824576a1177039bed9c7575f4c153eb0f"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"checksum": "cbea371d2e15e94b33f3097eaf0ec97906c7b41ed81cf2d7d3ca972f1774f3ea"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"1.24": {
|
"1.24": {
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
"repository": "https://github.com/casey/just",
|
"repository": "https://github.com/casey/just",
|
||||||
"tag_prefix": "",
|
"tag_prefix": "",
|
||||||
"rust_crate": "${package}",
|
"rust_crate": "${package}",
|
||||||
"broken": ["1.25.0"],
|
|
||||||
"asset_name": "${package}-${version}-${rust_target}.tar.gz",
|
"asset_name": "${package}-${version}-${rust_target}.tar.gz",
|
||||||
"platform": {
|
"platform": {
|
||||||
"x86_64_linux_musl": {},
|
"x86_64_linux_musl": {},
|
||||||
|
|||||||
Reference in New Issue
Block a user