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
8 changes: 4 additions & 4 deletions .github/workflows/run-on-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
steps:
- name: Check permissions of commenting user
id: has_permissions
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const response = await github.rest.repos.getCollaboratorPermissionLevel({
Expand All @@ -88,7 +88,7 @@ jobs:
exit 1

- name: React to comment
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
github.rest.reactions.createForIssueComment({
Expand All @@ -100,7 +100,7 @@ jobs:

- name: Get SHA of last commit on default branch if issue or pull-request branch
id: sha
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:

- name: Create comment with test result and link to workflow run information
if: always() && steps.has_permissions.outputs.result == 'true'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
github-token: ${{ steps.get_comment_bot_token.outputs.token }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-profiling.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- id: determine-correct-sha
name: Determine the SHA to run profiling on
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
result-encoding: string
script: |
Expand Down