Skip to content

Commit ab8bda6

Browse files
ci: bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/github-script](https://github.com/actions/github-script) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v8...v9) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@v2...v3) --- 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: 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>
1 parent b139c05 commit ab8bda6

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.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
@@ -403,7 +403,7 @@ jobs:
403403
git push origin "v$VERSION"
404404
405405
- name: Create GitHub Release
406-
uses: softprops/action-gh-release@v2
406+
uses: softprops/action-gh-release@v3
407407
env:
408408
VERSION: ${{ steps.version.outputs.version }}
409409
GITHUB_REPOSITORY: ${{ github.repository }}

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

Lines changed: 1 addition & 1 deletion
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({

.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)