Skip to content

Commit d92384c

Browse files
authored
chore(ci): bump socket-registry refs to da519693, remove npm upgrade hack (#1161)
1 parent 90b8620 commit d92384c

File tree

3 files changed

+11
-18
lines changed

3 files changed

+11
-18
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
export default { text, view, renderToString, renderToStringWithWidth, printComponent, eprintComponent, getTerminalSize, TuiRenderer, init }
120120
CODE
121121
122-
- uses: SocketDev/socket-registry/.github/actions/install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
122+
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
123123

124124
- name: Run lint
125125
shell: bash
@@ -187,7 +187,7 @@ jobs:
187187
export default { text, view, renderToString, renderToStringWithWidth, printComponent, eprintComponent, getTerminalSize, TuiRenderer, init }
188188
CODE
189189
190-
- uses: SocketDev/socket-registry/.github/actions/install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
190+
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
191191

192192
- name: Run type check
193193
shell: bash
@@ -262,7 +262,7 @@ jobs:
262262
export default { text, view, renderToString, renderToStringWithWidth, printComponent, eprintComponent, getTerminalSize, TuiRenderer, init }
263263
CODE
264264
265-
- uses: SocketDev/socket-registry/.github/actions/install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
265+
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
266266

267267
- name: Build CLI
268268
working-directory: packages/cli
@@ -347,7 +347,7 @@ jobs:
347347
export default { text, view, renderToString, renderToStringWithWidth, printComponent, eprintComponent, getTerminalSize, TuiRenderer, init }
348348
CODE
349349
350-
- uses: SocketDev/socket-registry/.github/actions/install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
350+
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
351351

352352
- name: Build CLI
353353
working-directory: packages/cli

.github/workflows/provenance.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959

6060
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
6161

62-
- uses: SocketDev/socket-registry/.github/actions/install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
62+
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
6363

6464
- name: Build CLI
6565
shell: bash
@@ -107,7 +107,7 @@ jobs:
107107

108108
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
109109

110-
- uses: SocketDev/socket-registry/.github/actions/install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
110+
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
111111

112112
- name: Download CLI bundle
113113
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
@@ -164,14 +164,7 @@ jobs:
164164

165165
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
166166

167-
- uses: SocketDev/socket-registry/.github/actions/install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
168-
169-
- name: Upgrade npm for trusted publishing
170-
run: |
171-
# Avoid npm self-upgrade (corrupts deps mid-install on Node 22).
172-
NPM_DIR="$(npm config get prefix)/lib/node_modules/npm"
173-
curl -sL https://registry.npmjs.org/npm/-/npm-11.12.1.tgz | tar xz -C "$NPM_DIR" --strip-components=1
174-
echo "npm version: $(npm --version)"
167+
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
175168

176169
# Get versions for lock-stepped and independent packages.
177170
- name: Get versions

.github/workflows/weekly-update.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
node-version-file: .node-version
3939
cache: 'pnpm'
4040

41-
- uses: SocketDev/socket-registry/.github/actions/install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
41+
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
4242

4343
- name: Check for npm updates
4444
id: check
@@ -78,7 +78,7 @@ jobs:
7878
node-version-file: .node-version
7979
cache: 'pnpm'
8080

81-
- uses: SocketDev/socket-registry/.github/actions/install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
81+
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
8282

8383
- name: Create update branch
8484
id: branch
@@ -90,7 +90,7 @@ jobs:
9090
git checkout -b "$BRANCH_NAME"
9191
echo "branch=$BRANCH_NAME" >> $GITHUB_OUTPUT
9292
93-
- uses: SocketDev/socket-registry/.github/actions/setup-git-signing@6096b06b1790f411714c89c40f72aade2eeaab7c # main
93+
- uses: SocketDev/socket-registry/.github/actions/setup-git-signing@da519693b701861bc0f9690a30f50af1a1dcd49c # main
9494
with:
9595
gpg-private-key: ${{ secrets.BOT_GPG_PRIVATE_KEY }}
9696

@@ -338,7 +338,7 @@ jobs:
338338
test.log
339339
retention-days: 7
340340

341-
- uses: SocketDev/socket-registry/.github/actions/cleanup-git-signing@6096b06b1790f411714c89c40f72aade2eeaab7c # main
341+
- uses: SocketDev/socket-registry/.github/actions/cleanup-git-signing@da519693b701861bc0f9690a30f50af1a1dcd49c # main
342342
if: always()
343343

344344
notify:

0 commit comments

Comments
 (0)