Skip to content

Commit 0d4c743

Browse files
committed
Add a comment about Dependabot configuration for Docker
Added for consistency with other apps, however this config is redundant at the moment. There’re no referenced to Node version in the app code and CI uses latest LTS (Long-Term Support) version: https://github.com/alphagov/govuk-infrastructure/blob/060035dcac31d40036e0ec68773ea7dc95cb7bb4/.github/actions/setup-node/action.yml#L9 Moved this config to the bottom of the file similar to other apps.
1 parent 40cd33d commit 0d4c743

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,29 @@ updates:
2828
- "timecop"
2929
- "webmock"
3030

31-
- package-ecosystem: docker
31+
- package-ecosystem: github-actions
3232
directory: /
3333
schedule:
3434
interval: weekly
3535
day: tuesday
3636
time: "07:00"
37-
ignore:
38-
- dependency-name: ruby
3937
cooldown:
40-
default-days: 7
38+
default-days: 3
4139
open-pull-requests-limit: 25
4240

43-
- package-ecosystem: github-actions
41+
# Ruby needs to be upgraded manually in multiple places, so cannot
42+
# be upgraded by Dependabot. That effectively makes the below
43+
# config redundant, as ruby is the only updatable thing in the
44+
# Dockerfile, although this may change in the future. We hope this
45+
# config will save a dev from trying to upgrade ruby via Dependabot.
46+
- package-ecosystem: docker
4447
directory: /
4548
schedule:
4649
interval: weekly
4750
day: tuesday
4851
time: "07:00"
52+
ignore:
53+
- dependency-name: ruby
4954
cooldown:
50-
default-days: 3
55+
default-days: 7
5156
open-pull-requests-limit: 25

0 commit comments

Comments
 (0)