Skip to content

Commit

Permalink
Merge pull request rust-lang#3568 from Turbo87/renovate
Browse files Browse the repository at this point in the history
Add renovatebot config file
  • Loading branch information
ehuss authored Feb 12, 2024
2 parents 5a49a84 + e78b4a8 commit 017edf5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
extends: [
"config:best-practices",
":pinAllExceptPeerDependencies",
":maintainLockFilesWeekly",
":semanticCommitsDisabled",
":label(not-rfc)",
"regexManagers:githubActionsVersions",
"schedule:monthly"
],
}
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
branches:
- master

env:
# renovate: datasource=crate depName=mdbook versioning=semver
MDBOOK_VERSION: 0.4.37

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -14,7 +18,7 @@ jobs:
- name: Install mdbook
run: |
mkdir mdbook
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
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
echo `pwd`/mdbook >> $GITHUB_PATH
- name: Generate Book
run: |
Expand Down

0 comments on commit 017edf5

Please sign in to comment.