Add or use the default action URL for Gitea / Forgejo Actions #31666
MichaelSasser
started this conversation in
Suggest an Idea
Replies: 1 comment 3 replies
-
override registry url via package rules |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Tell us more.
By default,
uses: actions/checkout@v4
in Gitea/Forgejo Actions would tell the actions runner to download the action from github.com/actions/checkout. Administrators can change this behavior in the Gitea/Forgejo config file.For example, the Configuration Cheat Sheet - actions (Actions) - DEFAULT_ACTIONS_URL contains the configuration:
(Also see Gitlab: Compared to GitHub Actions - Downloading actions)
By altering the configuration like
FORGEJO__actions__DEFAULT_ACTIONS_URL=self
the actions runner would downloadactions/checkout
from the previous example from my own Gitea/Forgejo instance instead.Currently, renovate doesn't seem to support an option where I can mirror this behavior, leading to to errors, when the action has a different than the one hosted on GitHub or when dealing with custom actions.
Example Dashboard with errors
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.Repository problems
Renovate tried to run on this repository, but found these problems.
Errored
These updates encountered an error and will be retried. Click on a checkbox below to force a retry now.
Detected dependencies
github-actions
woodpecker
As a workaround, I think absolute URLs currently work
uses: https://my-gitea.com/actions/checkout@v4
but I haven't tested it yetBeta Was this translation helpful? Give feedback.
All reactions