Skip to content

Commit

Permalink
Bump mkdocs-material from 9.5.45 to 9.5.46 (microsoft#2627)
Browse files Browse the repository at this point in the history
* Bump mkdocs-material from 9.5.45 to 9.5.46

Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.5.45 to 9.5.46.
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.5.45...9.5.46)

---
updated-dependencies:
- dependency-name: mkdocs-material
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Build docs

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bernie White <[email protected]>
  • Loading branch information
dependabot[bot] and BernieWhite authored Nov 25, 2024
1 parent 3c5a2b5 commit 600497d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
29 changes: 28 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ jobs:
timeout-minutes: 30
run: Invoke-Build TestModule -Configuration Release -AssertStyle GitHubActions


build_extension:
name: Build extension
runs-on: ubuntu-latest
Expand Down Expand Up @@ -233,6 +232,34 @@ jobs:
env:
DISPLAY: ':99.0'

build_docs:
name: Build docs
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
architecture: 'x64'

- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install wheel
python3 -m pip install -r requirements-docs.txt
- name: Build site
run: mkdocs build
env:
MKDOCS_GIT_COMMITTERS_APIKEY: ${{ secrets.GITHUB_TOKEN }}

# ------------------
# Run analysis tools
Expand Down
2 changes: 1 addition & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mkdocs==1.6.1
mkdocs-material==9.5.45
mkdocs-material==9.5.46
pymdown-extensions==10.12
mike==2.1.3
mkdocs-simple-hooks==0.1.5
Expand Down

0 comments on commit 600497d

Please sign in to comment.