Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

chore(deps): bump pymdown-extensions from 10.10.2 to 10.12 (#236) #193

chore(deps): bump pymdown-extensions from 10.10.2 to 10.12 (#236)

chore(deps): bump pymdown-extensions from 10.10.2 to 10.12 (#236) #193

Workflow file for this run

name: deploy-docs
on:
push:
branches:
- main
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install -r ./mkdocs-material-requirements.txt --no-deps --require-hashes
- run: mkdocs gh-deploy --force