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
2 changes: 1 addition & 1 deletion .github/workflows/render-diagrams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: npm ci

- name: Install Puppeteer for rendering
run: npm install puppeteer --no-save
run: npm install puppeteer@24.37.5 --no-save

- name: Render Mermaid to SVG
run: npx -y @mermaid-js/mermaid-cli -i "docs/diagrams/*.mmd" -o docs/diagrams -f svg
Expand Down
4 changes: 2 additions & 2 deletions scripts/render-local.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ if (-not $SkipChromiumDownload) {
Write-Output 'Installing puppeteer (this will download Chromium). This can take several minutes.'
$success = $false
for ($try=1; $try -le $pptInstallRetries; $try++) {
Write-Output "Attempt $try of $($pptInstallRetries): npm install puppeteer --no-audit --no-fund"
Write-Output "Attempt $try of $($pptInstallRetries): npm install puppeteer@24.37.5 --no-audit --no-fund"
try {
npm install puppeteer --no-audit --no-fund
npm install puppeteer@24.37.5 --no-audit --no-fund
if ($LASTEXITCODE -eq 0) { $success = $true; break }
Write-Warning "npm exited with code $LASTEXITCODE"
} catch {
Expand Down
Loading