Skip to content

Commit 43c5f1f

Browse files
committed
chore(ci): cascade socket-registry pins to 3f2f2c00
Picks up the multi-package bootstrap loop (a645d921) that pre-seeds @socketsecurity/lib + @socketregistry/packageurl-js + @sinclair/typebox on a fresh checkout, plus the libuv-fix in check-firewall that drops process.exit() in favor of natural event-loop drain (necessary on Node 24 + Windows when the bootstrap runs the firewall checker multiple times in succession). Cascade chain: setup + check-firewall Layer 1 a645d921 setup-and-install Layer 2 521d0ba8 reusable workflows Layer 3 3f2f2c00 ← this is the propagation SHA _local-not-for-reuse-* Layer 4 b2905c2f (socket-registry only)
1 parent bcc5548 commit 43c5f1f

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
export default { text, view, renderToString, renderToStringWithWidth, printComponent, eprintComponent, getTerminalSize, TuiRenderer, init }
110110
CODE
111111
112-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@ceab1e26610aa29511b85a7eb369ed2248d8543c # main
112+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@3f2f2c00e9b9dbd78872619e47cb600586b88105 # main
113113
with:
114114
checkout: 'false'
115115

@@ -168,7 +168,7 @@ jobs:
168168
export default { text, view, renderToString, renderToStringWithWidth, printComponent, eprintComponent, getTerminalSize, TuiRenderer, init }
169169
CODE
170170
171-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@ceab1e26610aa29511b85a7eb369ed2248d8543c # main
171+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@3f2f2c00e9b9dbd78872619e47cb600586b88105 # main
172172
with:
173173
checkout: 'false'
174174

@@ -234,7 +234,7 @@ jobs:
234234
export default { text, view, renderToString, renderToStringWithWidth, printComponent, eprintComponent, getTerminalSize, TuiRenderer, init }
235235
CODE
236236
237-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@ceab1e26610aa29511b85a7eb369ed2248d8543c # main
237+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@3f2f2c00e9b9dbd78872619e47cb600586b88105 # main
238238
with:
239239
checkout: 'false'
240240
node-version: ${{ matrix.node-version }}
@@ -317,7 +317,7 @@ jobs:
317317
export default { text, view, renderToString, renderToStringWithWidth, printComponent, eprintComponent, getTerminalSize, TuiRenderer, init }
318318
CODE
319319
320-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@ceab1e26610aa29511b85a7eb369ed2248d8543c # main
320+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@3f2f2c00e9b9dbd78872619e47cb600586b88105 # main
321321
with:
322322
checkout: 'false'
323323
node-version: ${{ matrix.node-version }}

.github/workflows/provenance.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
persist-credentials: false
5353

54-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@ceab1e26610aa29511b85a7eb369ed2248d8543c # main
54+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@3f2f2c00e9b9dbd78872619e47cb600586b88105 # main
5555
with:
5656
checkout: 'false'
5757

@@ -91,7 +91,7 @@ jobs:
9191
with:
9292
persist-credentials: false
9393

94-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@ceab1e26610aa29511b85a7eb369ed2248d8543c # main
94+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@3f2f2c00e9b9dbd78872619e47cb600586b88105 # main
9595
with:
9696
checkout: 'false'
9797
registry-url: 'https://registry.npmjs.org'
@@ -141,7 +141,7 @@ jobs:
141141
with:
142142
persist-credentials: false
143143

144-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@ceab1e26610aa29511b85a7eb369ed2248d8543c # main
144+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@3f2f2c00e9b9dbd78872619e47cb600586b88105 # main
145145
with:
146146
checkout: 'false'
147147
registry-url: 'https://registry.npmjs.org'

.github/workflows/weekly-update.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
persist-credentials: false
3131

32-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@ceab1e26610aa29511b85a7eb369ed2248d8543c # main
32+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@3f2f2c00e9b9dbd78872619e47cb600586b88105 # main
3333
with:
3434
checkout: 'false'
3535

@@ -62,7 +62,7 @@ jobs:
6262
fetch-depth: 0
6363
persist-credentials: false
6464

65-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@ceab1e26610aa29511b85a7eb369ed2248d8543c # main
65+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@3f2f2c00e9b9dbd78872619e47cb600586b88105 # main
6666
with:
6767
checkout: 'false'
6868

@@ -79,7 +79,7 @@ jobs:
7979
git checkout -b "$BRANCH_NAME" HEAD~1
8080
echo "branch=$BRANCH_NAME" >> $GITHUB_OUTPUT
8181
82-
- uses: SocketDev/socket-registry/.github/actions/setup-git-signing@ceab1e26610aa29511b85a7eb369ed2248d8543c # main
82+
- uses: SocketDev/socket-registry/.github/actions/setup-git-signing@3f2f2c00e9b9dbd78872619e47cb600586b88105 # main
8383
with:
8484
gpg-private-key: ${{ secrets.BOT_GPG_PRIVATE_KEY }}
8585

@@ -332,7 +332,7 @@ jobs:
332332
test.log
333333
retention-days: 7
334334

335-
- uses: SocketDev/socket-registry/.github/actions/cleanup-git-signing@ceab1e26610aa29511b85a7eb369ed2248d8543c # main
335+
- uses: SocketDev/socket-registry/.github/actions/cleanup-git-signing@3f2f2c00e9b9dbd78872619e47cb600586b88105 # main
336336
if: always()
337337

338338
notify:

0 commit comments

Comments
 (0)