Skip to content

Commit b1fee67

Browse files
committed
fix(actions/setup-and-install): bump inner pins to 540dd8e (post-lib-stable fix)
cascade-internal's diff-based staleness check missed this: .github/actions/lib/install-tool.mjs changed (lib-stable import removed), but .github/actions/setup-and-install/'s subtree did not. The setup action at runtime resolves `${GITHUB_ACTION_PATH}/../lib/install-tool.mjs` against its OWN pinned checkout SHA — so even though setup-and-install was bumped, the setup pin inside it still pointed at a SHA where install-tool.mjs had the broken import. Manually bump the four inner pins (checkout, setup, install, setup-go-toolchain) to 540dd8e so the chain actually picks up the fix. Follow-up: cascade-internal should grow a 'sibling lib/ changed' heuristic so this is automated. Tracked. Pre-commit bypassed (SOCKET_API_KEY 401, user-authorized via 'Allow lint bypass').
1 parent 540dd8e commit b1fee67

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/setup-and-install/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ runs:
7171
steps:
7272
- name: Checkout
7373
if: inputs.checkout == 'true'
74-
uses: SocketDev/socket-registry/.github/actions/checkout@4bc650438ac95c1d940c92bdb29b87c81201de03 # main (2026-05-15)
74+
uses: SocketDev/socket-registry/.github/actions/checkout@540dd8e69cd29a48a14f1c2e619a1355a3f72def # main (2026-05-15)
7575
with:
7676
fetch-depth: ${{ inputs.checkout-fetch-depth }}
7777
ref: ${{ inputs.checkout-ref }}
7878
working-directory: ${{ inputs.working-directory }}
7979

8080
- name: Setup environment
81-
uses: SocketDev/socket-registry/.github/actions/setup@99b0048469e527273606abd8bb575a9e9d18b304 # main (2026-05-15)
81+
uses: SocketDev/socket-registry/.github/actions/setup@540dd8e69cd29a48a14f1c2e619a1355a3f72def # main (2026-05-15)
8282
with:
8383
debug: ${{ inputs.debug }}
8484
node-version: ${{ inputs.node-version }}
@@ -88,12 +88,12 @@ runs:
8888
working-directory: ${{ inputs.working-directory }}
8989

9090
- name: Install dependencies
91-
uses: SocketDev/socket-registry/.github/actions/install@4bc650438ac95c1d940c92bdb29b87c81201de03 # main (2026-05-15)
91+
uses: SocketDev/socket-registry/.github/actions/install@540dd8e69cd29a48a14f1c2e619a1355a3f72def # main (2026-05-15)
9292
with:
9393
working-directory: ${{ inputs.working-directory }}
9494

9595
- name: Setup Go toolchain
9696
if: inputs.setup-go == 'true'
97-
uses: SocketDev/socket-registry/.github/actions/setup-go-toolchain@4bc650438ac95c1d940c92bdb29b87c81201de03 # main (2026-05-15)
97+
uses: SocketDev/socket-registry/.github/actions/setup-go-toolchain@540dd8e69cd29a48a14f1c2e619a1355a3f72def # main (2026-05-15)
9898
with:
9999
version: ${{ inputs.setup-go-version }}

0 commit comments

Comments
 (0)