Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2799fd4

Browse files
authored
Merge pull request #2190 from urfave/update-mkdocs-reqs
Update mkdocs reqs
2 parents c53cbcd + 5273c66 commit 2799fd4

6 files changed

Lines changed: 21 additions & 14 deletions

File tree

.github/dependabot.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "gomod"
4-
directory: "/"
3+
- package-ecosystem: gomod
4+
directory: /
55
schedule:
6-
interval: "weekly"
7-
- package-ecosystem: "github-actions"
8-
directory: "/"
6+
interval: weekly
7+
- package-ecosystem: github-actions
8+
directory: /
99
schedule:
10-
interval: "weekly"
10+
interval: weekly
11+
- package-ecosystem: pip
12+
directory: /
13+
schedule:
14+
interval: weekly
15+
groups:
16+
python-packages:
17+
patterns: ["*"]

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
python-version: '3.13'
5656
cache: pip
57-
cache-dependency-path: mkdocs-reqs.txt
57+
cache-dependency-path: mkdocs-requirements.txt
5858

5959
- name: Ensure mkdocs is available
6060
run: make ensure-mkdocs

mkdocs-reqs.txt

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

mkdocs-requirements.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
mkdocs-git-revision-date-localized-plugin==1.4.7
2+
mkdocs-material==9.6.16
3+
mkdocs==1.6.1
4+
mkdocs-redirects==1.2.2
5+
pygments==2.19.2

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NOTE: the mkdocs dependencies will need to be installed out of
22
# band until this whole thing gets more automated:
33
#
4-
# pip install -r mkdocs-reqs.txt
4+
# pip install -r mkdocs-requirements.txt
55
#
66

77
site_name: urfave/cli

scripts/build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ func EnsureMkdocsActionFunc(ctx context.Context, cmd *cli.Command) error {
575575
}
576576
}
577577

578-
return runCmd(ctx, "pip", "install", "-r", "mkdocs-reqs.txt")
578+
return runCmd(ctx, "pip", "install", "-r", "mkdocs-requirements.txt")
579579
}
580580

581581
func SetMkdocsRemoteActionFunc(ctx context.Context, cmd *cli.Command) error {

0 commit comments

Comments
 (0)