Skip to content

Commit 2897037

Browse files
committed
chore: update Renovate configuration for Docker host rules
This commit updates the `.github/renovate.json` file to include new host rules for Docker, specifying credentials for `ghcr.io` and `docker.io`. This enhancement improves the configuration for managing Docker dependencies.
1 parent 86aea41 commit 2897037

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/renovate.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,18 @@
3232
"hostRules": [
3333
{
3434
"timeout": 3000000
35+
},
36+
{
37+
"hostType": "docker",
38+
"matchHost": "ghcr.io",
39+
"username": "{{ secrets.GITHUB_USER }}",
40+
"password": "{{ secrets.GITHUB_PASS }}"
41+
},
42+
{
43+
"hostType": "docker",
44+
"matchHost": "docker.io",
45+
"username": "{{ secrets.DOCKER_USER }}",
46+
"password": "{{ secrets.DOCKER_PASS }}"
3547
}
3648
]
3749
}

0 commit comments

Comments
 (0)