Skip to content
Snippets Groups Projects
Unverified Commit 5ff64669 authored by Patrick Schratz's avatar Patrick Schratz Committed by GitHub
Browse files

feat(manager/github-actions): Support for Gitea and Forgejo actions within...

feat(manager/github-actions): Support for Gitea and Forgejo actions within `github-actions` manager (#24336)

Co-authored-by: default avatarMichael Kriese <michael.kriese@visualon.de>
parent a65129f2
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ export { extractPackageFile } from './extract'; ...@@ -5,7 +5,7 @@ export { extractPackageFile } from './extract';
export const defaultConfig = { export const defaultConfig = {
fileMatch: [ fileMatch: [
'^(workflow-templates|\\.github/workflows)/[^/]+\\.ya?ml$', '^(workflow-templates|\\.(?:github|gitea|forgejo)/workflows)/[^/]+\\.ya?ml$',
'(^|/)action\\.ya?ml$', '(^|/)action\\.ya?ml$',
], ],
}; };
......
The `github-actions` manager extracts dependencies from GitHub Actions workflow and workflow template files. The `github-actions` manager extracts dependencies from GitHub Actions workflow and workflow template files.
It can also be used for Gitea and Forgejo Actions workflows as such are compatible with GitHub Actions workflows.
If you like to use digest pinning but want to follow the action version tag, you can use the following sample: If you like to use digest pinning but want to follow the action version tag, you can use the following sample:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment