Skip to content

Bump github/codeql-action from 3.25.15 to 3.26.3 #2377

Bump github/codeql-action from 3.25.15 to 3.26.3

Bump github/codeql-action from 3.25.15 to 3.26.3 #2377

# Simple workflow for testing mkdocs build
name: Test building TLP:CLEAR content
on: [push, pull_request, workflow_dispatch]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@0d381219ddf674d61a7572ddd19d7941e271515c # v2.9.0
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # v5.1.1
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- name: install mkdocs
run: pip install -r requirements.txt
- name: run mdformat
run: mdformat .
- name: build site
run: python -m mkdocs build --strict