mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-26 03:32:42 +08:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
49fb57d5e6 | ||
|
|
d9be7d8cda | ||
|
|
7728147b45 | ||
|
|
6df4f17880 | ||
|
|
be60431cdc | ||
|
|
24db57b414 | ||
|
|
56d048e4be | ||
|
|
88886e83d3 | ||
|
|
1a101afe87 |
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
@@ -21,7 +21,3 @@ updates:
|
|||||||
commit-message:
|
commit-message:
|
||||||
prefix: ''
|
prefix: ''
|
||||||
labels: []
|
labels: []
|
||||||
groups:
|
|
||||||
github-actions:
|
|
||||||
patterns:
|
|
||||||
- '*'
|
|
||||||
|
|||||||
24
.github/workflows/ci.yml
vendored
24
.github/workflows/ci.yml
vendored
@@ -31,26 +31,16 @@ concurrency:
|
|||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
miri:
|
|
||||||
needs: tidy
|
|
||||||
uses: taiki-e/github-actions/.github/workflows/miri.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
|
||||||
with:
|
|
||||||
# NB: sync with test job's --exclude option
|
|
||||||
args: --exclude install-action-internal-codegen
|
|
||||||
msrv:
|
|
||||||
needs: tidy
|
|
||||||
uses: taiki-e/github-actions/.github/workflows/msrv.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
|
||||||
test-manifest-schema:
|
|
||||||
needs: tidy
|
|
||||||
uses: taiki-e/github-actions/.github/workflows/test.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
|
||||||
with:
|
|
||||||
# NB: sync with miri job's --exclude option
|
|
||||||
test-args: --exclude install-action-internal-codegen
|
|
||||||
no-std: false
|
|
||||||
tidy:
|
tidy:
|
||||||
uses: taiki-e/github-actions/.github/workflows/tidy.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
uses: taiki-e/github-actions/.github/workflows/tidy.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
|
||||||
permissions:
|
permissions:
|
||||||
security-events: write # for github/codeql-action/*
|
security-events: write # for github/codeql-action/*
|
||||||
|
test-manifest-schema:
|
||||||
|
needs: tidy
|
||||||
|
uses: taiki-e/github-actions/.github/workflows/rust-test.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
|
||||||
|
with:
|
||||||
|
test-args: --exclude install-action-internal-codegen
|
||||||
|
no-std: false
|
||||||
|
|
||||||
test:
|
test:
|
||||||
needs: tidy
|
needs: tidy
|
||||||
|
|||||||
4
.github/workflows/manifest.yml
vendored
4
.github/workflows/manifest.yml
vendored
@@ -19,10 +19,9 @@ concurrency:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
manifest:
|
manifest:
|
||||||
uses: taiki-e/github-actions/.github/workflows/gen.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
uses: taiki-e/github-actions/.github/workflows/gen.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
|
||||||
permissions:
|
permissions:
|
||||||
contents: write # for creating branch for pr
|
contents: write # for creating branch for pr
|
||||||
pull-requests: write # for gh pr review --approve
|
|
||||||
secrets:
|
secrets:
|
||||||
PR_TOKEN_APP_PRIVATE_KEY: ${{ secrets.PR_TOKEN_APP_PRIVATE_KEY }}
|
PR_TOKEN_APP_PRIVATE_KEY: ${{ secrets.PR_TOKEN_APP_PRIVATE_KEY }}
|
||||||
with:
|
with:
|
||||||
@@ -30,6 +29,5 @@ jobs:
|
|||||||
commit-script: tools/ci/manifest.sh
|
commit-script: tools/ci/manifest.sh
|
||||||
title: Update manifest
|
title: Update manifest
|
||||||
branch: update-manifest
|
branch: update-manifest
|
||||||
automerge: true
|
|
||||||
install-cosign: true
|
install-cosign: true
|
||||||
install-parse-changelog: true
|
install-parse-changelog: true
|
||||||
|
|||||||
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@@ -28,7 +28,7 @@ concurrency:
|
|||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
if: github.repository_owner == 'taiki-e' && inputs.target == 'install-action'
|
if: github.repository_owner == 'taiki-e' && inputs.target == 'install-action'
|
||||||
uses: taiki-e/github-actions/.github/workflows/action-release.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
uses: taiki-e/github-actions/.github/workflows/action-release.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
|
||||||
permissions:
|
permissions:
|
||||||
contents: write # for taiki-e/create-gh-release-action
|
contents: write # for taiki-e/create-gh-release-action
|
||||||
secrets:
|
secrets:
|
||||||
@@ -40,7 +40,7 @@ jobs:
|
|||||||
|
|
||||||
release-manifest-schema:
|
release-manifest-schema:
|
||||||
if: github.repository_owner == 'taiki-e' && inputs.target == 'install-action-manifest-schema'
|
if: github.repository_owner == 'taiki-e' && inputs.target == 'install-action-manifest-schema'
|
||||||
uses: taiki-e/github-actions/.github/workflows/rust-release.yml@931686d4e4cf88b13e790040727ccde2dba8ec62 # main
|
uses: taiki-e/github-actions/.github/workflows/rust-release.yml@1bb80ca038216cd1fb7b6ca6d76240b3772963ab # main
|
||||||
permissions:
|
permissions:
|
||||||
contents: write # for taiki-e/create-gh-release-action
|
contents: write # for taiki-e/create-gh-release-action
|
||||||
id-token: write # for rust-lang/crates-io-auth-action
|
id-token: write # for rust-lang/crates-io-auth-action
|
||||||
|
|||||||
13
CHANGELOG.md
13
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.79.7] - 2026-05-24
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.46.3.
|
||||||
|
|
||||||
|
- Update `rclone@latest` to 1.74.2.
|
||||||
|
|
||||||
|
- Update `mise@latest` to 2026.5.15.
|
||||||
|
|
||||||
|
- Update `tombi@latest` to 0.11.7.
|
||||||
|
|
||||||
## [2.79.6] - 2026-05-23
|
## [2.79.6] - 2026-05-23
|
||||||
|
|
||||||
- Update `wasm-bindgen@latest` to 0.2.122.
|
- Update `wasm-bindgen@latest` to 0.2.122.
|
||||||
@@ -6636,7 +6646,8 @@ 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.79.6...HEAD
|
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.79.7...HEAD
|
||||||
|
[2.79.7]: https://github.com/taiki-e/install-action/compare/v2.79.6...v2.79.7
|
||||||
[2.79.6]: https://github.com/taiki-e/install-action/compare/v2.79.5...v2.79.6
|
[2.79.6]: https://github.com/taiki-e/install-action/compare/v2.79.5...v2.79.6
|
||||||
[2.79.5]: https://github.com/taiki-e/install-action/compare/v2.79.4...v2.79.5
|
[2.79.5]: https://github.com/taiki-e/install-action/compare/v2.79.4...v2.79.5
|
||||||
[2.79.4]: https://github.com/taiki-e/install-action/compare/v2.79.3...v2.79.4
|
[2.79.4]: https://github.com/taiki-e/install-action/compare/v2.79.3...v2.79.4
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ description: GitHub Action for installing development tools
|
|||||||
inputs:
|
inputs:
|
||||||
tool:
|
tool:
|
||||||
description: Tools to install (whitespace or comma separated list)
|
description: Tools to install (whitespace or comma separated list)
|
||||||
required: true
|
required: false
|
||||||
# default: #publish:tool
|
default: taplo-cli
|
||||||
checksum:
|
checksum:
|
||||||
description: Whether to enable checksums (strongly discouraged to disable)
|
description: Whether to enable checksums (strongly discouraged to disable)
|
||||||
required: false
|
required: false
|
||||||
|
|||||||
32
manifests/knope.json
generated
32
manifests/knope.json
generated
@@ -4,6 +4,38 @@
|
|||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.22.4"
|
"version": "0.22.4"
|
||||||
},
|
},
|
||||||
|
"0.23.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-x86_64-unknown-linux-musl.tgz",
|
||||||
|
"etag": "0x8DEB9CB8CCE3489",
|
||||||
|
"hash": "76a970a5e237344abc14be3de37ed50c021b659a9b66b3f54afc77e6d48ac501",
|
||||||
|
"bin": "knope-x86_64-unknown-linux-musl/knope"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-x86_64-apple-darwin.tgz",
|
||||||
|
"etag": "0x8DEB9CB8CCCD686",
|
||||||
|
"hash": "e403b5be532fb77238b9489555bc61ccb36ea4b4c7efc0dde1f5e5290067babe",
|
||||||
|
"bin": "knope-x86_64-apple-darwin/knope"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-x86_64-pc-windows-msvc.tgz",
|
||||||
|
"etag": "0x8DEB9CB8CCC1413",
|
||||||
|
"hash": "7624eaeaf4758bf94729ab2e0bc4ea11e52972eee1bcd581630212eba335fbb0",
|
||||||
|
"bin": "knope-x86_64-pc-windows-msvc/knope.exe"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-aarch64-unknown-linux-musl.tgz",
|
||||||
|
"etag": "0x8DEB9CB8CC8BC73",
|
||||||
|
"hash": "c68758b1c3b007367ea40c22b1b1b052720557215935af09677d1561039698b4",
|
||||||
|
"bin": "knope-aarch64-unknown-linux-musl/knope"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"url": "https://github.com/knope-dev/knope/releases/download/knope/v0.23.0/knope-aarch64-apple-darwin.tgz",
|
||||||
|
"etag": "0x8DEB9CB8CC847CB",
|
||||||
|
"hash": "a6e231cc7f02032c5b49ad14149c7d11fd48f0e244f9fb48d5c4c47ffb0e3863",
|
||||||
|
"bin": "knope-aarch64-apple-darwin/knope"
|
||||||
|
}
|
||||||
|
},
|
||||||
"0.22": {
|
"0.22": {
|
||||||
"version": "0.22.4"
|
"version": "0.22.4"
|
||||||
},
|
},
|
||||||
|
|||||||
6
manifests/mise.json
generated
6
manifests/mise.json
generated
@@ -27,13 +27,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "2026.5.14"
|
"version": "2026.5.15"
|
||||||
},
|
},
|
||||||
"2026": {
|
"2026": {
|
||||||
"version": "2026.5.14"
|
"version": "2026.5.15"
|
||||||
},
|
},
|
||||||
"2026.5": {
|
"2026.5": {
|
||||||
"version": "2026.5.14"
|
"version": "2026.5.15"
|
||||||
},
|
},
|
||||||
"2026.5.15": {
|
"2026.5.15": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
38
manifests/parse-dockerfile.json
generated
38
manifests/parse-dockerfile.json
generated
@@ -35,6 +35,44 @@
|
|||||||
"0.1": {
|
"0.1": {
|
||||||
"version": "0.1.5"
|
"version": "0.1.5"
|
||||||
},
|
},
|
||||||
|
"0.1.6": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DEB9CD9244F826",
|
||||||
|
"hash": "710e16cc30de60a997233c5ca9cda9ed7b945f13d6588c25dbe9a8a4bc6085a7"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DEB9CD8EAF3822",
|
||||||
|
"hash": "6880df1dc4dfb34636961f3b7c2e6713566276cf9e07fb1172f2a41a5849dab1"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DEB9CDDB1179DE",
|
||||||
|
"hash": "19e98cdcbb7eb28c1bd50512e2ef5596d8624041ca14b8febb63b4ab98e6c9bf"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DEB9CD90318D69",
|
||||||
|
"hash": "8e77ec1ed1324beda9376c629ecede7289f1b16272c70ad5bde676ffdbf203ce"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DEB9CD8D22DC09",
|
||||||
|
"hash": "931d37a3c9f0729d4e5d8f633098b0e32987ca798d31743f33bb8b469c61e6df"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DEB9CDA4A18843",
|
||||||
|
"hash": "97528a7845bcc581ebcebc55eee147e784d4784a0faeed1546b2ee342d84d02e"
|
||||||
|
},
|
||||||
|
"powerpc64le_linux_musl": {
|
||||||
|
"etag": "0x8DEB9CD8F86F231",
|
||||||
|
"hash": "f02bece07e90c056aecc864a1f934da34e0a77a6034b61c8081ae012e0b32e8a"
|
||||||
|
},
|
||||||
|
"riscv64_linux_musl": {
|
||||||
|
"etag": "0x8DEB9CD9255874E",
|
||||||
|
"hash": "e7ff63e164497017449ac842a622b66e540e6c658df4a384adb05d660220d6b1"
|
||||||
|
},
|
||||||
|
"s390x_linux_gnu": {
|
||||||
|
"etag": "0x8DEB9CD9F7061E4",
|
||||||
|
"hash": "c738e2a37e3c9d9b23e5eb982eb25182b123d8c41111c745fe3cb434aab6215c"
|
||||||
|
}
|
||||||
|
},
|
||||||
"0.1.5": {
|
"0.1.5": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
"etag": "0x8DE8664CD0E9F55",
|
"etag": "0x8DE8664CD0E9F55",
|
||||||
|
|||||||
6
manifests/rclone.json
generated
6
manifests/rclone.json
generated
@@ -27,13 +27,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.74.1"
|
"version": "1.74.2"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.74.1"
|
"version": "1.74.2"
|
||||||
},
|
},
|
||||||
"1.74": {
|
"1.74": {
|
||||||
"version": "1.74.1"
|
"version": "1.74.2"
|
||||||
},
|
},
|
||||||
"1.74.2": {
|
"1.74.2": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
4
manifests/tombi.json
generated
4
manifests/tombi.json
generated
@@ -2,10 +2,10 @@
|
|||||||
"rust_crate": null,
|
"rust_crate": null,
|
||||||
"template": null,
|
"template": null,
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.11.6"
|
"version": "0.11.7"
|
||||||
},
|
},
|
||||||
"0.11": {
|
"0.11": {
|
||||||
"version": "0.11.6"
|
"version": "0.11.7"
|
||||||
},
|
},
|
||||||
"0.11.7": {
|
"0.11.7": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
6
manifests/typos.json
generated
6
manifests/typos.json
generated
@@ -21,13 +21,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.46.2"
|
"version": "1.46.3"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.46.2"
|
"version": "1.46.3"
|
||||||
},
|
},
|
||||||
"1.46": {
|
"1.46": {
|
||||||
"version": "1.46.2"
|
"version": "1.46.3"
|
||||||
},
|
},
|
||||||
"1.46.3": {
|
"1.46.3": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ image='ghcr.io/taiki-e/tidy'
|
|||||||
if [[ -n "${TIDY_DEV:-}" ]]; then
|
if [[ -n "${TIDY_DEV:-}" ]]; then
|
||||||
image+=':latest'
|
image+=':latest'
|
||||||
else
|
else
|
||||||
image+='@sha256:1d3a5d57c486cbac02ef3d8ee29bb0768ebd1fbffef61a61d282215464e2551d'
|
image+='@sha256:151cd5c4f7c88bd21322c7dab255d60e699ffe4d4903e4e712429952537df6cf'
|
||||||
fi
|
fi
|
||||||
user="$(id -u):$(id -g)"
|
user="$(id -u):$(id -g)"
|
||||||
workdir="${PWD}"
|
workdir="${PWD}"
|
||||||
|
|||||||
Reference in New Issue
Block a user