From 266a6a3da05f3ab9605d2d81acfb5f19e9255c92 Mon Sep 17 00:00:00 2001 From: jylenhof Date: Sun, 9 Nov 2025 09:59:20 +0100 Subject: [PATCH] docs(installation): add mise installation alternative --- src/installation/index.md | 1 + src/installation/mise.md | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 src/installation/mise.md diff --git a/src/installation/index.md b/src/installation/index.md index cb87c0e..1da4bf4 100644 --- a/src/installation/index.md +++ b/src/installation/index.md @@ -64,6 +64,7 @@ go build -ldflags "-X main.version=$(git describe --tags --dirty --always | sed - [Chocolatey](./chocolatey.md) (`Windows`) - [COPR](./copr.md) (`Linux`) - [GitHub CLI](./gh.md) (`Linux`, `macOS`, `Windows`, `FreeBSD`) +- [mise](./mise.md) (`Linux`, `macOS`, `Windows`) - [Nix/NixOS](./nix.md) (`Linux`, `macOS`) - [MacPorts](./macports.md) (`macOS`) - [Scoop](./scoop.md) (`Windows`) diff --git a/src/installation/mise.md b/src/installation/mise.md new file mode 100644 index 0000000..fb3c37d --- /dev/null +++ b/src/installation/mise.md @@ -0,0 +1,21 @@ +# [mise](https://github.com/jdx/mise/) (Linux/macOS/Windows) + +If you are a passionate user of mise, then you can use that to install and manage `act`: + +No need to declare the plugin, it's already known by mise. + +Install/configure act: + +```shell +# Show all installable versions +mise ls-remote act + +# Install specific version +mise install act@latest + +# Set a version globally (on your ~/.tool-versions or .mise.toml file) +mise use -g act@latest + +# Now action-validator commands are available +act --help +```