Skip to content
Open
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
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
2 changes: 2 additions & 0 deletions .github/versions.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
NODE_VERSION=22
PNPM_VERSION=10.13.1
15 changes: 9 additions & 6 deletions .github/workflows/branch-markdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch all history for comparison

- name: Load versions
run: cat .github/versions.env >> "$GITHUB_ENV"

- name: Get changed markdown files
id: changed-files
run: |
Expand All @@ -46,16 +49,16 @@ jobs:

- name: Install pnpm
if: steps.changed-files.outputs.count > 0
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v6
with:
version: 10.13.1
version: ${{ env.PNPM_VERSION }}
run_install: false

- name: Setup Node
if: steps.changed-files.outputs.count > 0
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'

Expand Down Expand Up @@ -84,7 +87,7 @@ jobs:
echo; echo "PNPM install"
pnpm install

- uses: DavidAnson/markdownlint-cli2-action@v22
- uses: DavidAnson/markdownlint-cli2-action@v23
if: steps.changed-files.outputs.count > 0
with:
config: '.markdownlint.json'
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/branch-spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,21 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Load versions
run: cat .github/versions.env >> "$GITHUB_ENV"

- name: Install pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v6
with:
version: 10.13.1
version: ${{ env.PNPM_VERSION }}
run_install: false

- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'

Expand All @@ -39,7 +42,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/branch-validation-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:
- main

jobs:

branch_validation:
uses: OctopusDeploy/microsite-deployment/.github/workflows/microsite-deployment-branch.yml@main
with:
octopus_project_name: "Docs Microsite"
package_id: "DocsMicrosite"
node_version: '20'
secrets: inherit
secrets: inherit
15 changes: 9 additions & 6 deletions .github/workflows/branch-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,21 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Load versions
run: cat .github/versions.env >> "$GITHUB_ENV"

- name: Install pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v6
with:
version: 10.13.1
version: ${{ env.PNPM_VERSION }}
run_install: false

- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'

Expand All @@ -46,7 +49,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-astro-full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ on:
branches: [ main ]

jobs:

branch_validation:
uses: OctopusDeploy/microsite-deployment/.github/workflows/microsite-deployment-full.yml@main
with:
octopus_project_name: 'Docs Microsite'
package_id: 'DocsMicrosite'
node_version: '20'
secrets: inherit
15 changes: 9 additions & 6 deletions .github/workflows/build-astro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,21 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Load versions
run: cat .github/versions.env >> "$GITHUB_ENV"

- name: Install pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v6
with:
version: 10.13.1
version: ${{ env.PNPM_VERSION }}
run_install: false

- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'

Expand All @@ -49,7 +52,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,28 +27,28 @@
"watch": "onchange 'src/**/*.{js,mjs,ts,astro,css}' 'public/docs/js/**/*.js' 'public/docs/css/**/*.css' -- prettier --write --plugin=prettier-plugin-astro {{changed}}"
},
"dependencies": {
"@astrojs/mdx": "^4.3.13",
"astro": "^5.18.0",
"astro-accelerator-utils": "^0.3.71",
"@astrojs/mdx": "^5.0.4",
"astro": "^6.3.1",
"astro-accelerator-utils": "^0.3.84",
"glob": "^13.0.6",
"gray-matter": "^4.0.3",
"hast-util-from-selector": "^3.0.1",
"html-to-text": "^9.0.5",
"html-to-text": "^10.0.0",
"keyword-extractor": "^0.0.28",
"optional": "^0.1.4",
"remark-directive": "^4.0.0",
"remark-heading-id": "^1.0.1",
"sharp": "^0.34.5"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@pnpm/exe": "^10.30.3",
"cspell": "^9.7.0",
"csv-parse": "^6.1.0",
"linkinator": "7.6.1",
"@playwright/test": "^1.59.1",
"@pnpm/exe": "^11.0.9",
"cspell": "^10.0.0",
"csv-parse": "^6.2.1",
"linkinator": "7.0.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0",
"prettier": "^3.8.1",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1"
},
"pnpm": {
Expand Down
Loading
Loading