Skip to content

Commit 54d2805

Browse files
authored
ci: pin actions/github-script to immutable SHA and upgrade to v9.0.0 (#6016)
This updates `ci.yml` to remove mutable `actions/github-script@v7` references and align them with the repository’s SHA-pinned Actions policy. All four usages are now pinned to the v9.0.0 commit SHA. - **What changed** - Replaced 4 instances of `actions/github-script@v7` in `.github/workflows/ci.yml` - Pinned each to `actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0` - **Scope** - Only workflow definition changes in `.github/workflows/ci.yml` - No runtime application logic or test code changes ```yaml # before uses: actions/github-script@v7 # after uses: actions/github-script@3a2844b # v9.0.0 ```
2 parents 16c2c47 + 8cc21bb commit 54d2805

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
contents: read
166166
steps:
167167
- name: Trigger smoke-copilot workflow for PR
168-
uses: actions/github-script@v7
168+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
169169
with:
170170
script: |
171171
await github.rest.actions.createWorkflowDispatch({
@@ -184,7 +184,7 @@ jobs:
184184
actions: write
185185
steps:
186186
- name: Trigger smoke-copilot workflow
187-
uses: actions/github-script@v7
187+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
188188
with:
189189
script: |
190190
await github.rest.actions.createWorkflowDispatch({
@@ -203,7 +203,7 @@ jobs:
203203
actions: write
204204
steps:
205205
- name: Trigger large-payload-tester workflow
206-
uses: actions/github-script@v7
206+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
207207
with:
208208
script: |
209209
await github.rest.actions.createWorkflowDispatch({
@@ -222,7 +222,7 @@ jobs:
222222
actions: write
223223
steps:
224224
- name: Trigger language-support-tester workflow
225-
uses: actions/github-script@v7
225+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
226226
with:
227227
script: |
228228
await github.rest.actions.createWorkflowDispatch({

0 commit comments

Comments
 (0)