Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: uses: requires to specify an @version #18

Merged
merged 1 commit into from
Jul 4, 2024
Merged
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ A GitHub Action which installs and configures the LXD snap on a runner.

When run with no inputs:
```yaml
uses: canonical/setup-lxd
uses: canonical/setup-lxd@main
```
this action will install or refresh the LXD snap using the `latest/candidate` channel.

You can specify a different `group` membership required to access LXD:
```yaml
uses: canonical/setup-lxd
uses: canonical/setup-lxd@main
with:
group: lxd
```
and then users of that group will have full control over LXD.

You can specify a snap channel with the `channel` input:
```yaml
uses: canonical/setup-lxd
uses: canonical/setup-lxd@main
with:
channel: 5.21/stable
```
Expand Down
Loading