This repository has been archived by the owner on Feb 9, 2024. It is now read-only.
Replies: 3 comments
-
Please checkout https://gitlab.com/renovate-bot/renovate-runner for official gitlab usage run:
variables:
RENOVATE_TOKEN: $GITLAB_TOKEN
image:
name: renovate/renovate:24.38.0
script:
- renovate
only:
- schedules |
Beta Was this translation helpful? Give feedback.
0 replies
-
The problem here is not the Gitlab CI but the permission change. Why is the folder now owned by root? |
Beta Was this translation helpful? Give feedback.
0 replies
-
This is intended. you should not copy the Renovate will read the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm using the docker image in combination with the following
.gitlab-ci.yml
:This works great with
renovate/renovate:24.38.0
but starts to fail withrenovate/renovate:24.38.1
with the error:Permission denied
After investigating what could be the problem I found that the permissions of the
app
folder inside the/usr/src
are different.drwxr-xr-x 1 root root 4096 Feb 5 15:14 app
drwxrwxr-x 1 ubuntu root 4096 Feb 4 13:52 app
I don't think this is intended but I wasn't able to find the exact commit that leads to this change.
Beta Was this translation helpful? Give feedback.
All reactions