Skip to content

Commit 9bd3179

Browse files
committed
Revert " Switch from Dependabot to update-dependencies (#2042)"
This reverts commit d75d0c4. Temporarily revert the Python update-dependencies workflow because the required GitHub App is not yet installed for the opensafely organization and its credentials are unavailable. This restores Dependabot Python version updates while the app is being configured. We can reintroduce the workflow once the required app ID and key are available.
1 parent 2d9a572 commit 9bd3179

3 files changed

Lines changed: 22 additions & 35 deletions

File tree

.github/dependabot.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
version: 2
22

33
updates:
4+
- package-ecosystem: "pip"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
day: "monday"
9+
time: "08:00"
10+
timezone: "Europe/London"
11+
cooldown:
12+
default-days: 7
13+
groups:
14+
production-dependencies:
15+
dependency-type: "production"
16+
development-dependencies:
17+
dependency-type: "development"
18+
allow:
19+
- dependency-type: "all"
20+
ignore:
21+
# mkdocs has a file reload bug with newer click versions,
22+
# so pin until this is resolved:
23+
# https://github.com/mkdocs/mkdocs/issues/4032
24+
- dependency-name: "click"
25+
426
- package-ecosystem: "github-actions"
527
directory: "/"
628
schedule:

.github/workflows/update-python-dependencies.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

justfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,3 @@ wordcount: build
136136
#!/usr/bin/env bash
137137
set -euo pipefail
138138
find site/ -name '*.html' -exec python scripts/wordcount.py {} + | awk '{sum += $1} END {print "Total words in documentation:", sum}'
139-
140-
# Update prod and dev dependencies
141-
update-dependencies: (upgrade 'prod') (upgrade 'dev')

0 commit comments

Comments
 (0)