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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ jobs:
- name: Update commit status
if: github.event_name == 'pull_request'
continue-on-error: true # Don't fail on status update issues
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
try {
Expand Down Expand Up @@ -480,7 +480,7 @@ jobs:
checks: write
steps:
- name: Generate PR status summary
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const { data: checkRuns } = await github.rest.checks.listForRef({
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Comment PR on lint failure
if: failure() && github.event_name == 'pull_request'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

- name: Comment PR with breaking changes
if: steps.breaking.outputs.has_breaking == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:

- name: Comment PR with docs link
if: github.event_name == 'pull_request'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
echo "version=${TAG#v}" >> $GITHUB_OUTPUT

- name: Create announcement issue
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
Loading