GitHub Action
Chocolatey Action
GitHub Action for Chocolatey, the package manager for Windows.
If you are interested, check out my other GitHub Actions!
on: push
jobs:
test:
runs-on: windows-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Choco help
uses: crazy-max/ghaction-chocolatey@v1
with:
args: -h
Following inputs can be used as step.with
keys
Name | Type | Description |
---|---|---|
args |
String | Arguments to pass to Chocolatey |
image |
String | Docker image to use (default ghcr.io/crazy-max/ghaction-chocolatey ) |
Since Dependabot
has native GitHub Actions support,
to enable it on your GitHub repo all you need to do is add the .github/dependabot.yml
file:
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
This action is only available for Linux and Windows virtual environments.
All kinds of contributions are welcome ๐! The most basic way to show your support is to star ๐ the project, or to raise issues ๐ฌ You can also support this project by becoming a sponsor on GitHub ๐ or by making a Paypal donation to ensure this journey continues indefinitely! ๐
Thanks again for your support, it is much appreciated! ๐
MIT. See LICENSE
for more details.