https://github.com/linuxeye/github-actions
https://github.com/linuxeye/github-actions
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/linuxeye/github-actions
- Owner: linuxeye
- Created: 2022-11-23T10:16:06.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-05T10:13:38.000Z (12 months ago)
- Last Synced: 2025-02-05T11:24:28.695Z (12 months ago)
- Size: 31.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitHub Action Reusable Workflows
## :exclamation: Keep up-to-date with GitHub Dependabot
| :warning: UPDATE |
|:--------------------|
| The following is not yet available as part of Dependabots package ecosystem.
https://github.community/t/dependabot-with-reusable-workflow-versions/207372/4 |
Since [Dependabot](https://docs.github.com/en/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot) has [native GitHub Actions support](https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#package-ecosystem), to enable it on your GitHub repo all you need to do is add the `.github/dependabot.yml` file:
```yml
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
```