Skip to content

Commit 439d9e4

Browse files
authored
chore(deps): refresh toolchain and actions (#183)
1 parent 6212daf commit 439d9e4

9 files changed

Lines changed: 184 additions & 186 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v7.0.1
17-
- uses: pnpm/action-setup@v6.0.9
17+
- uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
1818
- uses: actions/setup-node@v7
1919
with:
2020
node-version: 26

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ jobs:
6666

6767
- name: Initialize CodeQL
6868
if: ${{ github.event_name != 'workflow_dispatch' || inputs.profile == 'all' || inputs.profile == matrix.category }}
69-
uses: github/codeql-action/init@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4
69+
uses: github/codeql-action/init@9e3211c9a3b9311dfe05da2ed48eea3386f042dd # v4.37.6
7070
with:
7171
languages: ${{ matrix.language }}
7272
config-file: ${{ matrix.config_file }}
7373

7474
- name: Analyze
7575
if: ${{ github.event_name != 'workflow_dispatch' || inputs.profile == 'all' || inputs.profile == matrix.category }}
76-
uses: github/codeql-action/analyze@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4
76+
uses: github/codeql-action/analyze@9e3211c9a3b9311dfe05da2ed48eea3386f042dd # v4.37.6
7777
with:
7878
category: "/codeql/${{ matrix.category }}"

.github/workflows/crabbox-hydrate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
ref: ${{ inputs.ref || github.ref }}
4444

45-
- uses: pnpm/action-setup@v6.0.9
45+
- uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
4646

4747
- uses: actions/setup-node@v7
4848
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
fi
6161
6262
- name: Set up pnpm
63-
uses: pnpm/action-setup@v6.0.9
63+
uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
6464

6565
- name: Set up Node
6666
uses: actions/setup-node@v7

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- Reworked the README around a verified install and quickstart path, with deeper command, mapper, provider, and safety details linked to the existing docs.
66
- Updated transitive Vitest dependencies.
7+
- Updated pnpm, formatter and linter tooling, and GitHub Actions dependencies.
78

89
## 0.7.2 - 2026-08-01
910

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
"devDependencies": {
3838
"@types/node": "^26.1.2",
3939
"@types/proper-lockfile": "^4.1.4",
40-
"oxfmt": "^0.61.0",
41-
"oxlint": "^1.76.0",
40+
"oxfmt": "^0.62.0",
41+
"oxlint": "^1.77.0",
4242
"typescript": "^7.0.2",
4343
"vitest": "^4.1.10"
4444
},
4545
"engines": {
4646
"node": ">=22"
4747
},
48-
"packageManager": "pnpm@11.18.0"
48+
"packageManager": "pnpm@11.20.0+sha512.9a6f330a95b66446ea088faf1521405a8a01f07fde7124cc9958dfed52d4bb436737e65b08f85f37b46fcba375092558ac51262b816844b22f63406ed166bfee"
4949
}

pnpm-lock.yaml

Lines changed: 163 additions & 163 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/findings.ts

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,13 @@ type CanonicalEvidenceRef = {
9090
function canonicalEvidence(finding: ReviewOutput["findings"][number]["evidence"]): string {
9191
return JSON.stringify(
9292
finding
93-
.map(
94-
(evidence): CanonicalEvidenceRef => ({
95-
path: evidence.path,
96-
startLine: evidence.startLine,
97-
endLine: evidence.endLine,
98-
symbol: evidence.symbol,
99-
quote: evidence.quote,
100-
}),
101-
)
93+
.map((evidence): CanonicalEvidenceRef => ({
94+
path: evidence.path,
95+
startLine: evidence.startLine,
96+
endLine: evidence.endLine,
97+
symbol: evidence.symbol,
98+
quote: evidence.quote,
99+
}))
102100
.toSorted(compareCanonicalEvidence),
103101
);
104102
}

src/registry-verifier.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,11 @@ export async function verifyPackageSpec(
179179
// already returns a verdict, but a future refactor or a rogue
180180
// `fetchImpl` that throws a non-Error (e.g. a Symbol or null) would
181181
// otherwise poison the cache with a permanently-rejected promise.
182-
const verdictPromise = resolveVerdict(spec, options).catch(
183-
(error: unknown): RegistryVerdict =>
184-
unknownVerdict(
185-
spec,
186-
error instanceof Error ? `${error.name}: ${error.message}` : String(error),
187-
),
182+
const verdictPromise = resolveVerdict(spec, options).catch((error: unknown): RegistryVerdict =>
183+
unknownVerdict(
184+
spec,
185+
error instanceof Error ? `${error.name}: ${error.message}` : String(error),
186+
),
188187
);
189188
if (cache) {
190189
cache.set(cacheKey, verdictPromise);

0 commit comments

Comments
 (0)