File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 - name : Check authorization
2626 id : auth
2727 if : github.event_name == 'pull_request_target'
28- uses : actions/github-script@v8
28+ uses : actions/github-script@v9
2929 with :
3030 script : |
3131 const user = context.payload.pull_request.user.login;
8787 echo "number=$PR_NUM" >> "$GITHUB_OUTPUT"
8888
8989 - name : Add agentcore-harness-reviewing label
90- uses : actions/github-script@v8
90+ uses : actions/github-script@v9
9191 with :
9292 script : |
9393 const prNumber = parseInt('${{ steps.pr-number.outputs.number }}');
@@ -119,7 +119,7 @@ jobs:
119119 uses : actions/checkout@v6
120120
121121 - name : Configure AWS credentials
122- uses : aws-actions/configure-aws-credentials@v5
122+ uses : aws-actions/configure-aws-credentials@v6
123123 with :
124124 role-to-assume : ${{ secrets.HARNESS_AWS_ROLE_ARN }}
125125 aws-region : us-east-1
@@ -143,7 +143,7 @@ jobs:
143143
144144 - name : Remove agentcore-harness-reviewing label
145145 if : always()
146- uses : actions/github-script@v8
146+ uses : actions/github-script@v9
147147 with :
148148 script : |
149149 const prNumber = parseInt('${{ steps.pr-number.outputs.number }}');
Original file line number Diff line number Diff line change 1313 pull-requests : write
1414 steps :
1515 - name : Calculate PR size and apply label
16- uses : actions/github-script@v8
16+ uses : actions/github-script@v9
1717 with :
1818 script : |
1919 const prNumber = context.payload.pull_request.number;
Original file line number Diff line number Diff line change @@ -387,7 +387,7 @@ jobs:
387387 git push origin "v$VERSION"
388388
389389 - name : Create GitHub Release
390- uses : softprops/action-gh-release@v2
390+ uses : softprops/action-gh-release@v3
391391 env :
392392 VERSION : ${{ steps.version.outputs.version }}
393393 GITHUB_REPOSITORY : ${{ github.repository }}
Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010 steps :
1111 - name : Send issue details to Slack
12- uses : slackapi/slack-github-action@v3.0.1
12+ uses : slackapi/slack-github-action@v3.0.2
1313 with :
1414 webhook : ${{ secrets.SLACK_WEBHOOK_URL }}
1515 webhook-type : webhook-trigger
Original file line number Diff line number Diff line change 1414 steps :
1515 - name : Get open PRs
1616 id : open-prs
17- uses : actions/github-script@v8
17+ uses : actions/github-script@v9
1818 with :
1919 script : |
2020 const { data: prs } = await github.rest.pulls.list({
4040 );
4141
4242 - name : Send open PRs summary to Slack
43- uses : slackapi/slack-github-action@v3.0.1
43+ uses : slackapi/slack-github-action@v3.0.2
4444 with :
4545 webhook : ${{ secrets.SLACK_OPEN_PRS_WEBHOOK_URL }}
4646 webhook-type : webhook-trigger
Original file line number Diff line number Diff line change 3434 runs-on : ubuntu-latest
3535 steps :
3636 - name : Check authorization
37- uses : actions/github-script@v8
37+ uses : actions/github-script@v9
3838 with :
3939 script : |
4040 // Skip auth check for workflow_dispatch (manual runs)
7070 fetch-depth : 0
7171
7272 - name : Add strands-running label
73- uses : actions/github-script@v8
73+ uses : actions/github-script@v9
7474 with :
7575 script : |
7676 const issueNumber = ${{ inputs.issue_id || github.event.issue.number || github.event.pull_request.number }};
8383
8484 - name : Process inputs and build prompts
8585 id : process-inputs
86- uses : actions/github-script@v8
86+ uses : actions/github-script@v9
8787 with :
8888 script : |
8989 const processInputs = require('./.github/scripts/javascript/process-inputs.cjs');
@@ -112,7 +112,7 @@ jobs:
112112
113113 - name : Remove strands-running label
114114 if : always()
115- uses : actions/github-script@v8
115+ uses : actions/github-script@v9
116116 with :
117117 script : |
118118 try {
You can’t perform that action at this time.
0 commit comments