-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maintenance Bugfix: Github Actions runner permission fails at multiple runs #60
Comments
Also problems at login backend |
It is a general problem with Github-Actions. Related issues can be found amount many other issues here and there. As workaround we decided to run the runner as root, so it has all permission. This shouldn't be a problem because jobs are only triggered by team-members and the runner runs on a dedicated VM. |
While I am typically not in favor of running programs as root, I can at least understand it in this case. |
I don't think we need to do this. It's a dedicated VM only for the runner and the old user also had docker rights which lead to nearly same permissions as root permission |
Current Behavior
After one run the CI fails in the next run because it can't remove files created by the last run. exapmle failure
The actual solution is to run a cleanup task at the end of every run like you can see here
Expected Behavior
Runs don't fail because they already run once and the folder isn't deleted manually (or by a cleanup task).
DoD
If there is a solution:
If there is no solution:
The text was updated successfully, but these errors were encountered: