https://github.com/lima-vm/lima-actions
Run non-Ubuntu distributions such as Fedora on GitHub Actions
https://github.com/lima-vm/lima-actions
Last synced: 15 days ago
JSON representation
Run non-Ubuntu distributions such as Fedora on GitHub Actions
- Host: GitHub
- URL: https://github.com/lima-vm/lima-actions
- Owner: lima-vm
- License: apache-2.0
- Created: 2025-03-06T02:08:41.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2025-03-06T05:50:09.000Z (4 months ago)
- Last Synced: 2025-05-23T07:58:46.607Z (about 1 month ago)
- Homepage: https://lima-vm.io/docs/examples/gha/
- Size: 6.84 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lima on GitHub Actions
[Lima](https://lima-vm.io) is useful for running non-Ubuntu distributions such as Fedora on GitHub Actions.
## Usage
```yaml
steps:
- uses: actions/checkout@v4- uses: lima-vm/lima-actions/setup@v1
id: lima-actions-setup- uses: actions/cache@v4
with:
path: ~/.cache/lima
key: lima-${{ steps.lima-actions-setup.outputs.version }}- run: limactl start --plain --name=default --cpus=1 --memory=1 template://fedora
- uses: lima-vm/lima-actions/ssh@v1
- run: rsync -a -e ssh . lima-default:/tmp/repo
- run: ssh lima-default ls -l /tmp/repo
```## Optional parameters
### `lima-vm/lima-actions/setup`
- `version` (string): Lima version. e.g., "latest", "v1.0.6". Defaults to "latest".
- `additional_guestagents` (boolean): Install lima-additional-guestagents. Usually not needed. Defaults to `false`.### `lima-vm/lima-actions/ssh`
None