Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 13 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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: ["*"]
2 changes: 1 addition & 1 deletion .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 0 additions & 5 deletions mkdocs-reqs.txt

This file was deleted.

5 changes: 5 additions & 0 deletions mkdocs-requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading