Skip to content

Bump mkdocs-material from 9.3.2 to 9.4.0 #157

Bump mkdocs-material from 9.3.2 to 9.4.0

Bump mkdocs-material from 9.3.2 to 9.4.0 #157

Workflow file for this run

---
name: Dependencies
permissions: read-all
on:
push:
paths: ["dev-requirements.txt", "Docs/requirements.txt"]
pull_request:
paths: ["dev-requirements.txt", "Docs/requirements.txt"]
jobs:
install-dependencies:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies from txt files
run: |
python -m pip install --upgrade pip
pip install -r dev-requirements.txt
pip install -r Docs/requirements.txt
dependency-review:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
if: ${{ github.event_name != 'push' }}
- name: Dependency Review
if: ${{ github.event_name != 'push' }}
uses: actions/dependency-review-action@v3