Skip to content

Commit 6dc01ea

Browse files
committed
chore(ci): bump socket-registry action refs to main (6147a08c)
1 parent f1721a8 commit 6dc01ea

File tree

4 files changed

+10
-32
lines changed

4 files changed

+10
-32
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717
jobs:
1818
ci:
1919
name: Run CI Pipeline
20-
uses: SocketDev/socket-registry/.github/workflows/ci.yml@da519693b701861bc0f9690a30f50af1a1dcd49c # main
20+
uses: SocketDev/socket-registry/.github/workflows/ci.yml@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
2121
with:
2222
fail-fast: false
2323
lint-script: 'pnpm run lint --all'

.github/workflows/generate.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ jobs:
4545
echo "Sleeping for $delay seconds..."
4646
sleep $delay
4747
48-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
48+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
4949

5050
- name: Configure push credentials
5151
env:
5252
GH_TOKEN: ${{ github.token }}
5353
run: git remote set-url origin "https://x-access-token:${GH_TOKEN}@github.com/${{ github.repository }}.git"
5454

55-
- uses: SocketDev/socket-registry/.github/actions/setup-git-signing@da519693b701861bc0f9690a30f50af1a1dcd49c # main
55+
- uses: SocketDev/socket-registry/.github/actions/setup-git-signing@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
5656
with:
5757
gpg-private-key: ${{ secrets.BOT_GPG_PRIVATE_KEY }}
5858

@@ -108,7 +108,7 @@ jobs:
108108
echo "PR #$existing_pr already exists, skipping creation"
109109
fi
110110
111-
- uses: SocketDev/socket-registry/.github/actions/cleanup-git-signing@da519693b701861bc0f9690a30f50af1a1dcd49c # main
111+
- uses: SocketDev/socket-registry/.github/actions/cleanup-git-signing@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
112112
if: always()
113113

114114
validate:
@@ -121,7 +121,7 @@ jobs:
121121
outputs:
122122
has_changes: ${{ steps.check.outputs.has_changes }}
123123
steps:
124-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
124+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
125125
with:
126126
checkout-ref: automated/open-api
127127

.github/workflows/provenance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
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@da519693b701861bc0f9690a30f50af1a1dcd49c # main
28+
uses: SocketDev/socket-registry/.github/workflows/provenance.yml@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
2929
with:
3030
debug: ${{ inputs.debug }}
3131
dist-tag: ${{ inputs.dist-tag }}

.github/workflows/weekly-update.yml

Lines changed: 4 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,12 @@ jobs:
2424
outputs:
2525
has-updates: ${{ steps.check.outputs.has-updates }}
2626
steps:
27-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
27+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
2828

2929
- name: Check for npm updates
3030
id: check
3131
shell: bash
3232
run: |
33-
alias pnpm="$SFW_BIN pnpm"
3433
echo "Checking for npm package updates..."
3534
HAS_UPDATES=false
3635
NPM_UPDATES=$(pnpm outdated 2>/dev/null || true)
@@ -49,7 +48,7 @@ jobs:
4948
contents: write
5049
pull-requests: write
5150
steps:
52-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@da519693b701861bc0f9690a30f50af1a1dcd49c # main
51+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
5352

5453
- name: Create update branch
5554
id: branch
@@ -61,7 +60,7 @@ jobs:
6160
git checkout -b "$BRANCH_NAME"
6261
echo "branch=$BRANCH_NAME" >> $GITHUB_OUTPUT
6362
64-
- uses: SocketDev/socket-registry/.github/actions/setup-git-signing@da519693b701861bc0f9690a30f50af1a1dcd49c # main
63+
- uses: SocketDev/socket-registry/.github/actions/setup-git-signing@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
6564
with:
6665
gpg-private-key: ${{ secrets.BOT_GPG_PRIVATE_KEY }}
6766

@@ -72,13 +71,6 @@ jobs:
7271
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
7372
GITHUB_ACTIONS: 'true'
7473
run: |
75-
if [ -n "$SFW_BIN" ]; then
76-
mkdir -p /tmp/sfw-bin
77-
printf '#!/bin/bash\nexec "%s" pnpm "$@"\n' "$SFW_BIN" > /tmp/sfw-bin/pnpm
78-
chmod +x /tmp/sfw-bin/pnpm
79-
export PATH="/tmp/sfw-bin:$PATH"
80-
fi
81-
8274
if [ -z "$ANTHROPIC_API_KEY" ]; then
8375
echo "ANTHROPIC_API_KEY not set - skipping automated update"
8476
echo "success=false" >> $GITHUB_OUTPUT
@@ -127,13 +119,6 @@ jobs:
127119
if: steps.update.outputs.success == 'true'
128120
continue-on-error: true
129121
run: |
130-
if [ -n "$SFW_BIN" ]; then
131-
mkdir -p /tmp/sfw-bin
132-
printf '#!/bin/bash\nexec "%s" pnpm "$@"\n' "$SFW_BIN" > /tmp/sfw-bin/pnpm
133-
chmod +x /tmp/sfw-bin/pnpm
134-
export PATH="/tmp/sfw-bin:$PATH"
135-
fi
136-
137122
set +e
138123
pnpm build 2>&1 | tee build-output.log
139124
BUILD_EXIT=${PIPESTATUS[0]}
@@ -156,13 +141,6 @@ jobs:
156141
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
157142
GITHUB_ACTIONS: 'true'
158143
run: |
159-
if [ -n "$SFW_BIN" ]; then
160-
mkdir -p /tmp/sfw-bin
161-
printf '#!/bin/bash\nexec "%s" pnpm "$@"\n' "$SFW_BIN" > /tmp/sfw-bin/pnpm
162-
chmod +x /tmp/sfw-bin/pnpm
163-
export PATH="/tmp/sfw-bin:$PATH"
164-
fi
165-
166144
BUILD_LOG=$(cat build-output.log 2>/dev/null || echo "No build output")
167145
TEST_LOG=$(cat test-output.log 2>/dev/null || echo "No test output")
168146
@@ -313,7 +291,7 @@ jobs:
313291
test-output.log
314292
retention-days: 7
315293

316-
- uses: SocketDev/socket-registry/.github/actions/cleanup-git-signing@da519693b701861bc0f9690a30f50af1a1dcd49c # main
294+
- uses: SocketDev/socket-registry/.github/actions/cleanup-git-signing@6147a08ccc20fcb1f690dcc4650ec745776b3345 # main
317295
if: always()
318296

319297
notify:

0 commit comments

Comments
 (0)