Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/integration-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Safety Check - Prevent Workflow Modification Attacks
id: safety-check
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
return 'true';

- name: Collaborator Check
uses: actions/github-script@v8
uses: actions/github-script@v9
id: collab-check
with:
result-encoding: string
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- name: Check CI status
id: ci-status
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { data: checkRuns } = await github.rest.checks.listForRef({
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Auto-merge PR
if: steps.ci-status.outputs.result == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
await github.rest.pulls.merge({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack-open-prs-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: Get open PRs
id: open-prs
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { data: prs } = await github.rest.pulls.list({
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/strands-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check authorization
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
// Skip auth check for workflow_dispatch (manual runs)
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
fetch-depth: 0

- name: Add strands-running label
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const issueNumber = ${{ inputs.issue_id || github.event.issue.number || github.event.pull_request.number }};
Expand All @@ -83,7 +83,7 @@ jobs:

- name: Process inputs and build prompts
id: process-inputs
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const processInputs = require('./.github/scripts/javascript/process-inputs.cjs');
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:

- name: Remove strands-running label
if: always()
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
try {
Expand Down
Loading