Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/backup-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout master branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: master
fetch-depth: 0 # Required to push to another branch
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:

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

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: 24
cache: npm
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Upgrade npm
run: |
corepack enable
npm install -g npm@11.4.2
npm install -g npm@11.6.0

- name: Setup Pages
uses: actions/configure-pages@v5
Expand All @@ -57,7 +57,7 @@ jobs:

# Begin MkDocs setup
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.13'

Expand All @@ -72,7 +72,7 @@ jobs:
run: cp package.json build/

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: ./build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: 'Checkout Repository'
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: 'Dependency Review'
uses: actions/dependency-review-action@v4
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:

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

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: 24
cache: npm
Expand All @@ -44,14 +44,14 @@ jobs:
- name: Upgrade npm
run: |
corepack enable
npm install -g npm@11.4.2
npm install -g npm@11.6.0

- name: Install Node.js dependencies
run: npm ci

# MkDocs Integration
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.13'

Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:

steps:
- name: Download clean source archive
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: clean-source
path: ./
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:

- name: Update package name for GPR
run: |
sed -i 's/"name": ".*"/"name": "@netwk-pro\/docs"/' package.json
sed -i 's/"name": "[^"]*"/"name": "@netwk-pro\/docs"/' package.json

- name: Publish package to GPR
run: npm publish
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ your convenience below.

<span style="font-size: 12px; text-align: center;">

<p>Network Pro&trade;, the shield logo, and the "Locking Down Networks&trade;" slogan are <a href="https://docs.netwk.pro/legal/#trademark" target="_self">trademarks</a> of Network Pro Strategies.</p>
<p>Network Pro&trade;, the shield logo, and the "Locking Down Networks...&trade;" slogan are <a href="https://docs.netwk.pro/legal/#trademark" target="_self">trademarks</a> of Network Pro Strategies.</p>

<p>Licensed under <a href="https://docs.netwk.pro/legal/#cc-by" target="_self"><strong>CC BY 4.0</strong></a> and the <a href="https://docs.netwk.pro/legal/#gnu-gpl" target="_self"><strong>GNU GPL</strong></a>, as published by the <a rel="noopener noreferrer" href="https://fsf.org" target="_blank">Free Software Foundation</a>, either version 3 of the License, or (at your option) any later version.</p>

Expand Down
42 changes: 8 additions & 34 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,15 @@ theme:
logo: /icon-512x512.png
favicon: /favicon.svg
palette:
# Palette toggle for automatic mode
- media: '(prefers-color-scheme)'
primary: amber
accent: yellow
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
# Default to dark mode
- scheme: slate
primary: amber
accent: yellow
toggle:
icon: material/brightness-4
name: Switch to system preference
# Palette toggle for light mode
- media: '(prefers-color-scheme: light)'
scheme: default
name: Switch to light mode
# Optional light mode
- scheme: default
primary: amber
accent: yellow
toggle:
Expand All @@ -49,24 +40,6 @@ theme:

extra:
base_url: /
consent:
title: Cookie Consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
cookies:
analytics:
name: Google Analytics
checked: false
github:
name: GitHub
checked: true
actions:
- reject
- accept
- manage
social:
- icon: fontawesome/brands/instagram
name: Network Pro on Instagram
Expand All @@ -85,8 +58,9 @@ extra:
link: https://netwk.pro/contact

copyright: >
Copyright &copy; 2025 Network Pro Strategies (Network Pro&trade;) – <a
href="#__consent">Change cookie settings</a>
Copyright &copy; 2025 Network Pro Strategies (Network Pro&trade;) – This blog
does not use cookies. See our <a href="https://netwk.pro/privacy">Privacy
Policy</a> for details.

plugins:
- privacy
Expand Down
Loading