File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed
Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ permissions:
1717jobs :
1818 ci :
1919 name : Run CI Pipeline
20- uses : SocketDev/socket-registry/.github/workflows/ci.yml@b809e72d069356dfaf490134e9a20226dd9376c1 # main
20+ uses : SocketDev/socket-registry/.github/workflows/ci.yml@6096b06b1790f411714c89c40f72aade2eeaab7c # main
2121 with :
2222 fail-fast : false
2323 lint-script : ' pnpm run lint --all'
Original file line number Diff line number Diff line change 5050 persist-credentials : false
5151 token : ${{ secrets.GITHUB_TOKEN }}
5252
53- - uses : SocketDev/socket-registry/.github/actions/setup-and-install@24323cbd9e61a7e3a600b8c7e99eb27a29642a54 # main
53+ - uses : SocketDev/socket-registry/.github/actions/setup-and-install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
5454
5555 - name : Generate SDK
5656 # Fetches OpenAPI, generates types/api.d.ts and src/types-strict.ts
@@ -128,7 +128,7 @@ jobs:
128128 persist-credentials : false
129129 ref : automated/open-api
130130
131- - uses : SocketDev/socket-registry/.github/actions/setup-and-install@24323cbd9e61a7e3a600b8c7e99eb27a29642a54 # main
131+ - uses : SocketDev/socket-registry/.github/actions/setup-and-install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
132132
133133 - name : Build SDK
134134 run : pnpm run build
Original file line number Diff line number Diff line change 2525 permissions :
2626 contents : write # To create GitHub releases
2727 id-token : write # For npm trusted publishing via OIDC
28- uses : SocketDev/socket-registry/.github/workflows/provenance.yml@b809e72d069356dfaf490134e9a20226dd9376c1 # main
28+ uses : SocketDev/socket-registry/.github/workflows/provenance.yml@6096b06b1790f411714c89c40f72aade2eeaab7c # main
2929 with :
3030 debug : ${{ inputs.debug }}
3131 dist-tag : ${{ inputs.dist-tag }}
Original file line number Diff line number Diff line change @@ -24,11 +24,13 @@ jobs:
2424 outputs :
2525 has-updates : ${{ steps.check.outputs.has-updates }}
2626 steps :
27- - uses : SocketDev/socket-registry/.github/actions/setup-and-install@24323cbd9e61a7e3a600b8c7e99eb27a29642a54 # main
27+ - uses : SocketDev/socket-registry/.github/actions/setup-and-install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
2828
2929 - name : Check for npm updates
3030 id : check
31+ shell : bash
3132 run : |
33+ alias pnpm="$SFW_BIN pnpm"
3234 echo "Checking for npm package updates..."
3335 HAS_UPDATES=false
3436 NPM_UPDATES=$(pnpm outdated 2>/dev/null || true)
@@ -47,10 +49,13 @@ jobs:
4749 contents : write
4850 pull-requests : write
4951 steps :
50- - uses : SocketDev/socket-registry/.github/actions/setup-and-install@24323cbd9e61a7e3a600b8c7e99eb27a29642a54 # main
52+ - uses : SocketDev/socket-registry/.github/actions/setup-and-install@6096b06b1790f411714c89c40f72aade2eeaab7c # main
5153
5254 - name : Install Claude Code
53- run : npm install -g @anthropic-ai/claude-code
55+ shell : bash
56+ run : |
57+ alias pnpm="$SFW_BIN pnpm"
58+ pnpm add -g @anthropic-ai/claude-code@2.1.89
5459
5560 - name : Create update branch
5661 id : branch
You can’t perform that action at this time.
0 commit comments