Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`)
Expand Down
21 changes: 21 additions & 0 deletions src/installation/mise.md
Original file line number Diff line number Diff line change
@@ -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
```