Skip to content

Commit 9962c3e

Browse files
ci: bump the github-actions group across 1 directory with 4 updates (#964)
Bumps the github-actions group with 4 updates in the / directory: [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials), [actions/github-script](https://github.com/actions/github-script), [softprops/action-gh-release](https://github.com/softprops/action-gh-release) and [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action). Updates `aws-actions/configure-aws-credentials` from 5 to 6 - [Changelog](https://github.com/aws-actions/configure-aws-credentials/blob/main/CHANGELOG.md) - [Commits](aws-actions/configure-aws-credentials@v5...v6) Updates `actions/github-script` from 8 to 9 - [Commits](actions/github-script@v8...v9) Updates `softprops/action-gh-release` from 2 to 3 - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@v2...v3) Updates `slackapi/slack-github-action` from 3.0.1 to 3.0.2 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Changelog](https://github.com/slackapi/slack-github-action/blob/main/CHANGELOG.md) - [Commits](slackapi/slack-github-action@v3.0.1...v3.0.2) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: aws-actions/configure-aws-credentials dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: slackapi/slack-github-action dependency-version: 3.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9b46fbb commit 9962c3e

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/pr-ai-review.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
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;
@@ -87,7 +87,7 @@ jobs:
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 }}');

.github/workflows/pr-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
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;

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 }}

.github/workflows/slack-issue-notification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
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

.github/workflows/slack-open-prs-notification.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
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({
@@ -40,7 +40,7 @@ jobs:
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

.github/workflows/strands-command.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
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)
@@ -70,7 +70,7 @@ jobs:
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 }};
@@ -83,7 +83,7 @@ jobs:
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 {

0 commit comments

Comments
 (0)