Skip to content

Commit e145a6b

Browse files
committed
fix: update all references to acf9835
1 parent acf9835 commit e145a6b

11 files changed

+19
-19
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ runs:
5656
persist-credentials: false
5757

5858
- name: Setup environment
59-
uses: SocketDev/socket-registry/.github/actions/setup@0b8abc8242227931cfc9009d94f17be36f060845 # main
59+
uses: SocketDev/socket-registry/.github/actions/setup@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
6060
with:
6161
debug: ${{ inputs.debug }}
6262
node-version: ${{ inputs.node-version }}
@@ -66,6 +66,6 @@ runs:
6666
working-directory: ${{ inputs.working-directory }}
6767

6868
- name: Install dependencies
69-
uses: SocketDev/socket-registry/.github/actions/install@0b8abc8242227931cfc9009d94f17be36f060845 # main
69+
uses: SocketDev/socket-registry/.github/actions/install@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
7070
with:
7171
working-directory: ${{ inputs.working-directory }}

.github/workflows/_local-not-for-reuse-ci.yml

Lines changed: 3 additions & 3 deletions
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@0b8abc8242227931cfc9009d94f17be36f060845 # main
20+
uses: SocketDev/socket-registry/.github/workflows/ci.yml@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
2121
with:
2222
fail-fast: false
2323
lint-script: 'pnpm run lint --all'
@@ -39,11 +39,11 @@ jobs:
3939
autocrlf: false
4040
persist-credentials: false
4141

42-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@0b8abc8242227931cfc9009d94f17be36f060845 # main
42+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
4343
with:
4444
node-version: 22
4545

46-
- uses: SocketDev/socket-registry/.github/actions/cache-npm-packages@0b8abc8242227931cfc9009d94f17be36f060845 # main
46+
- uses: SocketDev/socket-registry/.github/actions/cache-npm-packages@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
4747

4848
- name: Build registry
4949
run: pnpm run build

.github/workflows/_local-not-for-reuse-claude-auto-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ permissions:
1515

1616
jobs:
1717
auto-review:
18-
uses: SocketDev/socket-registry/.github/workflows/claude-auto-review.yml@0b8abc8242227931cfc9009d94f17be36f060845 # main
18+
uses: SocketDev/socket-registry/.github/workflows/claude-auto-review.yml@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
1919
secrets:
2020
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}

.github/workflows/_local-not-for-reuse-claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ permissions:
2222

2323
jobs:
2424
claude:
25-
uses: SocketDev/socket-registry/.github/workflows/claude.yml@0b8abc8242227931cfc9009d94f17be36f060845 # main
25+
uses: SocketDev/socket-registry/.github/workflows/claude.yml@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
2626
secrets:
2727
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}

.github/workflows/_local-not-for-reuse-provenance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ permissions:
3131

3232
jobs:
3333
publish:
34-
uses: SocketDev/socket-registry/.github/workflows/provenance.yml@0b8abc8242227931cfc9009d94f17be36f060845 # main
34+
uses: SocketDev/socket-registry/.github/workflows/provenance.yml@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
3535
with:
3636
debug: ${{ inputs.debug }}
3737
force-registry: ${{ inputs.force-registry }}

.github/workflows/_local-not-for-reuse-socket-auto-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ permissions:
2424

2525
jobs:
2626
socket-auto-pr:
27-
uses: SocketDev/socket-registry/.github/workflows/socket-auto-pr.yml@0b8abc8242227931cfc9009d94f17be36f060845 # main
27+
uses: SocketDev/socket-registry/.github/workflows/socket-auto-pr.yml@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
2828
with:
2929
debug: ${{ inputs.debug }}
3030
autopilot: true

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ jobs:
130130
runs-on: ubuntu-latest
131131
timeout-minutes: ${{ inputs.lint-timeout-minutes }}
132132
steps:
133-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@0b8abc8242227931cfc9009d94f17be36f060845 # main
133+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
134134
with:
135135
debug: ${{ inputs.debug }}
136136
node-version: ${{ inputs.lint-node-version }}
137137
working-directory: ${{ inputs.working-directory }}
138138

139-
- uses: SocketDev/socket-registry/.github/actions/run-script@0b8abc8242227931cfc9009d94f17be36f060845 # main
139+
- uses: SocketDev/socket-registry/.github/actions/run-script@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
140140
with:
141141
main-script: ${{ inputs.lint-script }}
142142
setup-script: ${{ inputs.lint-setup-script }}
@@ -148,13 +148,13 @@ jobs:
148148
runs-on: ubuntu-latest
149149
timeout-minutes: ${{ inputs.type-check-timeout-minutes }}
150150
steps:
151-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@0b8abc8242227931cfc9009d94f17be36f060845 # main
151+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
152152
with:
153153
debug: ${{ inputs.debug }}
154154
node-version: ${{ inputs.type-check-node-version }}
155155
working-directory: ${{ inputs.working-directory }}
156156

157-
- uses: SocketDev/socket-registry/.github/actions/run-script@0b8abc8242227931cfc9009d94f17be36f060845 # main
157+
- uses: SocketDev/socket-registry/.github/actions/run-script@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
158158
with:
159159
main-script: ${{ inputs.type-check-script }}
160160
setup-script: ${{ inputs.type-check-setup-script }}
@@ -172,13 +172,13 @@ jobs:
172172
runs-on: ${{ matrix.os }}
173173
timeout-minutes: ${{ inputs.test-timeout-minutes }}
174174
steps:
175-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@0b8abc8242227931cfc9009d94f17be36f060845 # main
175+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
176176
with:
177177
debug: ${{ inputs.debug }}
178178
node-version: ${{ matrix.node-version }}
179179
working-directory: ${{ inputs.working-directory }}
180180

181-
- uses: SocketDev/socket-registry/.github/actions/run-script@0b8abc8242227931cfc9009d94f17be36f060845 # main
181+
- uses: SocketDev/socket-registry/.github/actions/run-script@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
182182
with:
183183
main-script: ${{ inputs.test-script }}
184184
setup-script: ${{ inputs.test-setup-script }}

.github/workflows/claude-auto-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
persist-credentials: false
6666

6767
- name: Setup debug
68-
uses: SocketDev/socket-registry/.github/actions/debug@0b8abc8242227931cfc9009d94f17be36f060845 # main
68+
uses: SocketDev/socket-registry/.github/actions/debug@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
6969
with:
7070
debug: ${{ inputs.debug }}
7171

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
persist-credentials: false
4747

4848
- name: Setup debug
49-
uses: SocketDev/socket-registry/.github/actions/debug@0b8abc8242227931cfc9009d94f17be36f060845 # main
49+
uses: SocketDev/socket-registry/.github/actions/debug@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
5050
with:
5151
debug: ${{ inputs.debug }}
5252

.github/workflows/provenance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
exit 1
107107
fi
108108
109-
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@0b8abc8242227931cfc9009d94f17be36f060845 # main
109+
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@acf9835c862dc81ade28bcd60375a551e7fdd5ff # main
110110
with:
111111
checkout-ref: ${{ inputs.ref }}
112112
node-version: ${{ inputs.node-version }}

0 commit comments

Comments
 (0)