Skip to content

Commit 64f9e0b

Browse files
committed
chore(ci): bump socket-registry action refs to main (6147a08c)
1 parent d373668 commit 64f9e0b

File tree

13 files changed

+19
-71
lines changed

13 files changed

+19
-71
lines changed

.github/workflows/binsuite.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
- name: Setup pnpm
132132
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
133133

134-
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
134+
- uses: SocketDev/socket-registry/.github/actions/install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
135135

136136
- name: Setup macOS code signing
137137
if: matrix.os == 'macos'
@@ -379,7 +379,6 @@ jobs:
379379
TARGET_ARCH: ${{ matrix.arch }}
380380
DEBUG: ${{ inputs.debug && '1' || '' }}
381381
run: |
382-
alias pnpm="$SFW_BIN pnpm"
383382
echo "🔨 Building binpress for ${PLATFORM}-${ARCH} (${BUILD_MODE} mode)"
384383
385384
# Use build script with --force to bypass checkpoint check
@@ -451,7 +450,6 @@ jobs:
451450
env:
452451
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
453452
run: |
454-
alias pnpm="$SFW_BIN pnpm"
455453
# Run full functional tests on native x64 platforms (non-Linux).
456454
# Linux glibc tests run inside Docker to avoid LTO bytecode incompatibility.
457455
echo "Running functional tests for binpress..."
@@ -468,7 +466,6 @@ jobs:
468466
ARCH: ${{ matrix.arch }}
469467
LIBC: ${{ matrix.libc }}
470468
run: |
471-
alias pnpm="$SFW_BIN pnpm"
472469
# Deterministic smoke test: native execution, Docker, QEMU, or static verification
473470
# All platforms now use PLATFORM_ARCH in build output path.
474471
if [ "${OS_TYPE}" = "windows" ]; then
@@ -599,7 +596,7 @@ jobs:
599596
- name: Setup pnpm
600597
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
601598

602-
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
599+
- uses: SocketDev/socket-registry/.github/actions/install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
603600

604601
- name: Setup macOS code signing
605602
if: matrix.os == 'macos'
@@ -823,7 +820,6 @@ jobs:
823820
TARGET_ARCH: ${{ matrix.arch }}
824821
DEBUG: ${{ inputs.debug && '1' || '' }}
825822
run: |
826-
alias pnpm="$SFW_BIN pnpm"
827823
echo "🔨 Building binflate for ${PLATFORM}-${ARCH} (${BUILD_MODE} mode)"
828824
829825
# Use build script with --force to bypass checkpoint check
@@ -884,7 +880,6 @@ jobs:
884880
env:
885881
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
886882
run: |
887-
alias pnpm="$SFW_BIN pnpm"
888883
# Run full functional tests on native x64 platforms (non-Linux).
889884
# Linux glibc tests run inside Docker to avoid LTO bytecode incompatibility.
890885
echo "Running functional tests for binflate..."
@@ -901,7 +896,6 @@ jobs:
901896
ARCH: ${{ matrix.arch }}
902897
LIBC: ${{ matrix.libc }}
903898
run: |
904-
alias pnpm="$SFW_BIN pnpm"
905899
# Deterministic smoke test: native execution, Docker, QEMU, or static verification
906900
# All platforms now use PLATFORM_ARCH in build output path.
907901
if [ "${OS_TYPE}" = "windows" ]; then
@@ -1032,7 +1026,7 @@ jobs:
10321026
- name: Setup pnpm
10331027
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
10341028

1035-
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
1029+
- uses: SocketDev/socket-registry/.github/actions/install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
10361030

10371031
- name: Setup macOS code signing
10381032
if: matrix.os == 'macos'
@@ -1301,7 +1295,6 @@ jobs:
13011295
TARGET_ARCH: ${{ matrix.arch }}
13021296
DEBUG: ${{ inputs.debug && '1' || '' }}
13031297
run: |
1304-
alias pnpm="$SFW_BIN pnpm"
13051298
echo "🔨 Building binject for ${PLATFORM}-${ARCH} (${BUILD_MODE} mode)"
13061299
13071300
# Use build script with --force to bypass checkpoint check.
@@ -1364,7 +1357,6 @@ jobs:
13641357
env:
13651358
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13661359
run: |
1367-
alias pnpm="$SFW_BIN pnpm"
13681360
# Run full functional tests on native x64 platforms (non-Linux).
13691361
# Linux glibc tests run inside Docker to avoid LTO bytecode incompatibility.
13701362
echo "Running functional tests for binject..."
@@ -1381,7 +1373,6 @@ jobs:
13811373
ARCH: ${{ matrix.arch }}
13821374
LIBC: ${{ matrix.libc }}
13831375
run: |
1384-
alias pnpm="$SFW_BIN pnpm"
13851376
# Deterministic smoke test: native execution, Docker, QEMU, or static verification
13861377
# All platforms now use PLATFORM_ARCH in build output path.
13871378
if [ "${OS_TYPE}" = "windows" ]; then

.github/workflows/ci.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,11 @@ jobs:
3737
name: Lint, Type, Validation
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
40+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
4141

4242
- name: Lint checks
4343
shell: bash
4444
run: |
45-
alias pnpm="$SFW_BIN pnpm"
4645
pnpm run check
4746
4847
- name: Validate cache-versions.json
@@ -76,13 +75,11 @@ jobs:
7675
- name: Validate checkpoint alignment
7776
shell: bash
7877
run: |
79-
alias pnpm="$SFW_BIN pnpm"
8078
node scripts/validate-checkpoint-alignment.mjs
8179
8280
- name: Run build-infra tests
8381
shell: bash
8482
run: |
85-
alias pnpm="$SFW_BIN pnpm"
8683
pnpm run test:build-infra
8784
8885
# Platform-specific tests run on all platforms
@@ -95,7 +92,7 @@ jobs:
9592
matrix:
9693
os: [ubuntu-latest, macos-latest, windows-latest]
9794
steps:
98-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
95+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
9996

10097
# Platform-specific tests go here
10198
# Package-specific build/test workflows:
@@ -106,5 +103,4 @@ jobs:
106103
- name: Verify pnpm install works
107104
shell: bash
108105
run: |
109-
alias pnpm="$SFW_BIN pnpm"
110106
pnpm ls --depth=0

.github/workflows/curl.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
node-version-file: .node-version
140140
cache: ''
141141

142-
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
142+
- uses: SocketDev/socket-registry/.github/actions/install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
143143

144144
- name: Initialize curl submodule
145145
shell: bash
@@ -305,7 +305,6 @@ jobs:
305305
TARGET_ARCH: ${{ matrix.arch }}
306306
CROSS_COMPILE: ${{ matrix.cross_compile && '1' || '' }}
307307
run: |
308-
alias pnpm="$SFW_BIN pnpm"
309308
cd packages/curl-builder
310309
node scripts/build.mjs
311310

.github/workflows/ink.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
9090
# Note: version is specified in package.json packageManager field, not here
9191

92-
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
92+
- uses: SocketDev/socket-registry/.github/actions/install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
9393

9494
- name: Setup Depot CLI
9595
uses: depot/setup-action@15c09a5f77a0840ad4bce955686522a257853461 # v1.7.1
@@ -203,7 +203,6 @@ jobs:
203203
if: steps.ink-checkpoint-cache.outputs.cache-hit == 'true'
204204
shell: bash
205205
run: |
206-
alias pnpm="$SFW_BIN pnpm"
207206
echo "Cache hit - running local build to restore dist..."
208207
cd packages/ink-builder
209208
pnpm run build
@@ -247,7 +246,6 @@ jobs:
247246
- name: Run tests
248247
shell: bash
249248
run: |
250-
alias pnpm="$SFW_BIN pnpm"
251249
cd packages/ink-builder
252250
pnpm test
253251

.github/workflows/iocraft.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
148148
# Note: version is specified in package.json packageManager field, not here
149149

150-
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
150+
- uses: SocketDev/socket-registry/.github/actions/install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
151151

152152
- name: Setup Rust toolchain
153153
uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # v1 (stable)
@@ -277,7 +277,6 @@ jobs:
277277
# Disable static CRT linking for musl to allow cdylib (dynamic library)
278278
RUSTFLAGS: ${{ matrix.libc == 'musl' && '-C target-feature=-crt-static' || '' }}
279279
run: |
280-
alias pnpm="$SFW_BIN pnpm"
281280
# Debug: verify cargo is accessible
282281
echo "Cargo location: $(which cargo)"
283282
cargo --version

.github/workflows/lief.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
node-version-file: .node-version
138138
cache: ''
139139

140-
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
140+
- uses: SocketDev/socket-registry/.github/actions/install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
141141

142142
- name: Initialize LIEF submodule
143143
shell: bash
@@ -266,7 +266,6 @@ jobs:
266266
BUILD_MODE: ${{ steps.build-mode.outputs.mode }}
267267
shell: bash
268268
run: |
269-
alias pnpm="$SFW_BIN pnpm"
270269
# Use get-checkpoint-chain.mjs for consistency.
271270
CHAIN=$(node packages/lief-builder/scripts/get-checkpoint-chain.mjs --$BUILD_MODE)
272271
echo "checkpoint_chain=$CHAIN" >> $GITHUB_OUTPUT
@@ -405,7 +404,6 @@ jobs:
405404
BUILD_MODE: ${{ steps.build-mode.outputs.mode }}
406405
TARGET_ARCH: ${{ matrix.arch }}
407406
run: |
408-
alias pnpm="$SFW_BIN pnpm"
409407
cd packages/lief-builder
410408
pnpm run build
411409
@@ -431,7 +429,6 @@ jobs:
431429
BUILD_MODE: ${{ steps.build-mode.outputs.mode }}
432430
PLATFORM_ARCH: ${{ steps.platform-arch-cache.outputs.platform_arch }}
433431
run: |
434-
alias pnpm="$SFW_BIN pnpm"
435432
LIEF_DIR="packages/lief-builder/build/${BUILD_MODE}/${PLATFORM_ARCH}/out/Final/lief"
436433
node packages/lief-builder/scripts/verify-release.mjs "$LIEF_DIR"
437434

.github/workflows/models.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
7171
# Note: version is specified in package.json packageManager field, not here
7272

73-
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
73+
- uses: SocketDev/socket-registry/.github/actions/install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
7474

7575
- name: Free up disk space
7676
run: |
@@ -205,7 +205,6 @@ jobs:
205205
env:
206206
BUILD_MODE: ${{ steps.build-mode.outputs.mode }}
207207
run: |
208-
alias pnpm="$SFW_BIN pnpm"
209208
# Use get-checkpoint-chain.mjs to ensure consistency with local builds
210209
CHAIN=$(node packages/models/scripts/get-checkpoint-chain.mjs --$BUILD_MODE)
211210
echo "checkpoint_chain=$CHAIN" >> $GITHUB_OUTPUT

.github/workflows/node-smol.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -211,13 +211,12 @@ jobs:
211211
- name: Setup pnpm
212212
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
213213

214-
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
214+
- uses: SocketDev/socket-registry/.github/actions/install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
215215

216216
- name: Load tool versions
217217
id: tool-versions
218218
shell: bash
219219
run: |
220-
alias pnpm="$SFW_BIN pnpm"
221220
# Load Python version constraints from external-tools.json (single source of truth)
222221
PYTHON_MIN_VERSION=$(node packages/build-infra/scripts/get-tool-version.mjs python minimumVersion)
223222
PYTHON_MAX_VERSION=$(node packages/build-infra/scripts/get-tool-version.mjs python maximumVersion)
@@ -518,7 +517,6 @@ jobs:
518517
env:
519518
BUILD_MODE: ${{ steps.smol-cache-key.outputs.build_mode }}
520519
run: |
521-
alias pnpm="$SFW_BIN pnpm"
522520
# Get checkpoint chain from build script (single source of truth)
523521
CHAIN=$(node packages/node-smol-builder/scripts/get-checkpoint-chain.mjs --$BUILD_MODE)
524522
echo "checkpoint_chain=$CHAIN" >> $GITHUB_OUTPUT
@@ -638,7 +636,6 @@ jobs:
638636
PLATFORM_ARCH: ${{ steps.platform-arch.outputs.platform_arch }}
639637
GITHUB_TOKEN: ${{ github.token }}
640638
run: |
641-
alias pnpm="$SFW_BIN pnpm"
642639
# Cross-platform timestamp function (GNU date/BusyBox fallback)
643640
get_timestamp() {
644641
date +%s 2>/dev/null || python3 -c 'import time; print(int(time.time()))'
@@ -703,7 +700,6 @@ jobs:
703700
BUILD_JOBS: ${{ steps.build-parallelism.outputs.jobs }}
704701
GITHUB_TOKEN: ${{ github.token }}
705702
run: |
706-
alias pnpm="$SFW_BIN pnpm"
707703
# Cross-platform timestamp function (GNU date/BusyBox fallback)
708704
get_timestamp() {
709705
date +%s 2>/dev/null || python3 -c 'import time; print(int(time.time()))'
@@ -790,7 +786,6 @@ jobs:
790786
BUILD_MODE: ${{ steps.smol-cache-key.outputs.build_mode }}
791787
PLATFORM_ARCH: ${{ steps.platform-arch.outputs.platform_arch }}
792788
run: |
793-
alias pnpm="$SFW_BIN pnpm"
794789
BUILD_MODE="${BUILD_MODE:-prod}"
795790
FINAL_DIR="packages/node-smol-builder/build/${BUILD_MODE}/${PLATFORM_ARCH}/out/Final"
796791

.github/workflows/onnxruntime.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
103103
# Note: version is specified in package.json packageManager field, not here
104104

105-
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
105+
- uses: SocketDev/socket-registry/.github/actions/install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
106106

107107
- name: Load cache version from centralized config
108108
id: cache-version
@@ -212,7 +212,6 @@ jobs:
212212
env:
213213
BUILD_MODE: ${{ steps.build-mode.outputs.mode }}
214214
run: |
215-
alias pnpm="$SFW_BIN pnpm"
216215
# Use get-checkpoint-chain.mjs to ensure consistency with local builds
217216
# Dev mode: skip wasm-optimized (optimization is disabled)
218217
# Prod mode: include wasm-optimized

.github/workflows/opentui.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
- name: Setup pnpm
148148
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
149149

150-
- uses: SocketDev/socket-registry/.github/actions/install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
150+
- uses: SocketDev/socket-registry/.github/actions/install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
151151

152152
- name: Setup Zig
153153
uses: goto-bus-stop/setup-zig@abea47f85e598557f500fa1fd2ab7464f5f5e2d0 # v2
@@ -261,7 +261,6 @@ jobs:
261261
TARGET_ARCH: ${{ matrix.arch }}
262262
LIBC: ${{ matrix.libc }}
263263
run: |
264-
alias pnpm="$SFW_BIN pnpm"
265264
echo "Zig location: $(which zig)"
266265
zig version
267266

0 commit comments

Comments
 (0)