diff --git a/.github/workflows/pr-size.yml b/.github/workflows/pr-size.yml index 1982c05f..792f0d72 100644 --- a/.github/workflows/pr-size.yml +++ b/.github/workflows/pr-size.yml @@ -13,7 +13,7 @@ jobs: pull-requests: write steps: - name: Calculate PR size and apply label - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const prNumber = context.payload.pull_request.number; diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 712e7e4a..c5752331 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -403,7 +403,7 @@ jobs: git push origin "v$VERSION" - name: Create GitHub Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 env: VERSION: ${{ steps.version.outputs.version }} GITHUB_REPOSITORY: ${{ github.repository }} diff --git a/.github/workflows/slack-open-prs-notification.yml b/.github/workflows/slack-open-prs-notification.yml index 51ec8078..b7764f4a 100644 --- a/.github/workflows/slack-open-prs-notification.yml +++ b/.github/workflows/slack-open-prs-notification.yml @@ -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({ diff --git a/.github/workflows/strands-command.yml b/.github/workflows/strands-command.yml index bfba8c80..a4e20a16 100644 --- a/.github/workflows/strands-command.yml +++ b/.github/workflows/strands-command.yml @@ -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) @@ -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 }}; @@ -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'); @@ -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 {