diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c507d44941..9a7c62c373 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,10 +1,17 @@ version: 2 updates: - - package-ecosystem: "gomod" - directory: "/" + - package-ecosystem: gomod + directory: / schedule: - interval: "weekly" - - package-ecosystem: "github-actions" - directory: "/" + interval: weekly + - package-ecosystem: github-actions + directory: / schedule: - interval: "weekly" + interval: weekly + - package-ecosystem: pip + directory: / + schedule: + interval: weekly + groups: + python-packages: + patterns: ["*"] diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 7bd9b64d17..d6a379ee37 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -54,7 +54,7 @@ jobs: with: python-version: '3.13' cache: pip - cache-dependency-path: mkdocs-reqs.txt + cache-dependency-path: mkdocs-requirements.txt - name: Ensure mkdocs is available run: make ensure-mkdocs diff --git a/mkdocs-reqs.txt b/mkdocs-reqs.txt deleted file mode 100644 index 365d864c7d..0000000000 --- a/mkdocs-reqs.txt +++ /dev/null @@ -1,5 +0,0 @@ -mkdocs-git-revision-date-localized-plugin~=1.2 -mkdocs-material~=9.5 -mkdocs~=1.6 -mkdocs-redirects~=1.2 -pygments~=2.18 diff --git a/mkdocs-requirements.txt b/mkdocs-requirements.txt new file mode 100644 index 0000000000..39c749edf1 --- /dev/null +++ b/mkdocs-requirements.txt @@ -0,0 +1,5 @@ +mkdocs-git-revision-date-localized-plugin==1.4.7 +mkdocs-material==9.6.16 +mkdocs==1.6.1 +mkdocs-redirects==1.2.2 +pygments==2.19.2 diff --git a/mkdocs.yml b/mkdocs.yml index 97bc4ad589..e1eac95871 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,7 +1,7 @@ # NOTE: the mkdocs dependencies will need to be installed out of # band until this whole thing gets more automated: # -# pip install -r mkdocs-reqs.txt +# pip install -r mkdocs-requirements.txt # site_name: urfave/cli diff --git a/scripts/build.go b/scripts/build.go index 09a5aa5769..98535320bc 100644 --- a/scripts/build.go +++ b/scripts/build.go @@ -575,7 +575,7 @@ func EnsureMkdocsActionFunc(ctx context.Context, cmd *cli.Command) error { } } - return runCmd(ctx, "pip", "install", "-r", "mkdocs-reqs.txt") + return runCmd(ctx, "pip", "install", "-r", "mkdocs-requirements.txt") } func SetMkdocsRemoteActionFunc(ctx context.Context, cmd *cli.Command) error {