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 README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Socket CLI

[![Socket Badge](https://socket.dev/api/badge/npm/package/socket)](https://socket.dev/npm/package/socket)
![Coverage](https://img.shields.io/badge/coverage-75.08%25-brightgreen)
![Coverage](assets/repo/badges/coverage.svg)

[![Follow @SocketSecurity](https://img.shields.io/twitter/follow/SocketSecurity?style=social)](https://twitter.com/SocketSecurity)
[![Follow @socket.dev on Bluesky](https://img.shields.io/badge/Follow-@socket.dev-1DA1F2?style=social&logo=bluesky)](https://bsky.app/profile/socket.dev)
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"// lockstep": "",
"lockstep": "node scripts/fleet/lockstep.mts",
"lockstep:emit-schema": "node scripts/fleet/lockstep-emit-schema.mts",
"lockstep:emit-mirror-globs": "node scripts/fleet/lockstep-emit-mirror-globs.mts",
"// Setup": "",
"setup": "node scripts/repo/setup.mts",
"postinstall": "node scripts/repo/setup.mts --install --quiet",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"build:sea": "node --max-old-space-size=8192 --import=./scripts/load.mts scripts/build-sea.mts",
"build:js": "node scripts/build-js.mts",
"dev:watch": "pnpm run build:watch",
"check": "node ../../scripts/check.mts",
"check": "node ../../scripts/fleet/check.mts",
"check-ci": "pnpm run check",
"lint": "oxlint -c ../../.config/oxlintrc.json",
"lint-ci": "pnpm run lint",
Expand Down Expand Up @@ -71,7 +71,7 @@
"test:validate": "node --import=./scripts/load.mts scripts/validate-tests.mts",
"test-ci": "run-s test:prepare test:unit test:validate",
"test-pre-commit": "cross-env PRE_COMMIT=1 pnpm test",
"update": "node ../../scripts/update.mts",
"update": "node ../../scripts/fleet/update.mts",
"verify": "node scripts/verify-package.mts",
"wasm": "node scripts/wasm.mts",
"wasm:build": "node scripts/wasm.mts --build",
Expand Down
7 changes: 7 additions & 0 deletions scripts/fleet/_shared/action-port-map.mts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,13 @@ export const COMPOSITE_ACTION_PORTS: Readonly<
'setup-git-signing': [
{ portedAt: 'v7.0.0', upstream: 'crazy-max/ghaction-import-gpg' },
],
// Socket-original inline Go-toolchain locator: its header states it is
// "written inline so we don't depend on a third-party action". It only takes
// inspiration from actions/setup-go's generic fallback ordering (PATH β†’
// hosted toolcache β†’ distro package manager β†’ bail); it ports neither that
// action's input surface nor its go.dev/dl download algorithm, so there is no
// upstream release to lock-step against.
'setup-go-toolchain': [],
}

// Split an `<owner>/<repo>` slug; undefined when the shape is wrong. Pure.
Expand Down
Loading