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/actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Setup Node.js and pnpm"
description: "Setup Node.js and pnpm, install dependencies"

# CI and Release call btravstack/config's reusable workflows, which do their own
# CI and Release call the reusable workflows in btravstack/tools, which do their own
# setup. This composite exists for Deploy Documentation, which runs its own
# steps in this repo and needs the same toolchain.

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
ci:
uses: btravstack/config/.github/workflows/ci-reusable.yml@workflows-v1
uses: btravstack/tools/.github/workflows/ci-reusable.yml@workflows-v1
with:
# "" uses .node-version (the dev/primary version, currently 24.16.0).
# 22.19 is the ROOT package's engines floor — the oldest Node this repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
contents: write
pull-requests: write
id-token: write
uses: btravstack/config/.github/workflows/release-reusable.yml@workflows-v1
uses: btravstack/tools/.github/workflows/release-reusable.yml@workflows-v1
secrets:
RELEASE_PAT: ${{ secrets.RELEASE_PAT }}
9 changes: 5 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,11 @@ overrides:
# Pinning vitest's vite apart would mean an inline `vite` devDependency on the
# library package for a purely transitive concern; not worth it.
"vite@<6.4.3": "6.4.3"
# GHSA-2v37-7h3g-55p8 (High): nanoid custom generators can loop indefinitely
# when size is zero. Reaches us only through the docs build —
# docs > @btravstack/theme > vitepress > postcss > nanoid — never the shipped
# package. 3.3.18 is the first release patched for the widened range.
"nanoid@<3.3.18": "3.3.18"

peerDependencyRules:
ignoreMissing:
Expand Down
Loading