Skip to content

Commit 017edf5

Browse files
authored
Merge pull request #3568 from Turbo87/renovate
Add renovatebot config file
2 parents 5a49a84 + e78b4a8 commit 017edf5

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/renovate.json5

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
extends: [
3+
"config:best-practices",
4+
":pinAllExceptPeerDependencies",
5+
":maintainLockFilesWeekly",
6+
":semanticCommitsDisabled",
7+
":label(not-rfc)",
8+
"regexManagers:githubActionsVersions",
9+
"schedule:monthly"
10+
],
11+
}

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
branches:
55
- master
66

7+
env:
8+
# renovate: datasource=crate depName=mdbook versioning=semver
9+
MDBOOK_VERSION: 0.4.37
10+
711
jobs:
812
build:
913
runs-on: ubuntu-latest
@@ -14,7 +18,7 @@ jobs:
1418
- name: Install mdbook
1519
run: |
1620
mkdir mdbook
17-
curl -Lf https://github.com/rust-lang/mdBook/releases/download/v0.4.37/mdbook-v0.4.37-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook
21+
curl -Lf https://github.com/rust-lang/mdBook/releases/download/v${{ env.MDBOOK_VERSION }}/mdbook-v${{ env.MDBOOK_VERSION }}-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook
1822
echo `pwd`/mdbook >> $GITHUB_PATH
1923
- name: Generate Book
2024
run: |

0 commit comments

Comments
 (0)