Skip to content

Commit 43b32a5

Browse files
committed
fix(deps): update Socket packages regardless of taze result
- Changed update script to always run pnpm update for Socket packages when --apply is used - Previously required taze to succeed (exit code 0) before updating Socket packages - This caused Socket packages to be skipped when taze found no updates due to maturity period - Socket-controlled packages (@socketsecurity/*, @socketregistry/*) should bypass maturity period
1 parent 58538ab commit 43b32a5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/update.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ async function main() {
5353
process.stdout.write('\r\x1b[K')
5454
}
5555

56-
// If applying updates, also update Socket packages.
57-
if (apply && result.code === 0) {
56+
// Always update Socket packages when applying (bypass taze maturity period).
57+
if (apply) {
5858
if (!quiet) {
5959
logger.progress('Updating Socket packages...')
6060
}

0 commit comments

Comments
 (0)