[llvm] [Github] Bump actions script version to v7 (PR #131471)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 15 13:32:34 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: Aiden Grossman (boomanaiden154)
<details>
<summary>Changes</summary>
This patch bumps the actions script version in the issue-write workflow to v7. This was done before but rolled back due to errors as there were breaking changes in v5
(https://github.com/actions/github-script#breaking-changes-in-v5). This was reverted in f984b47.
This patch makes the necessary changes to prevent job failures.
Fixes #<!-- -->130211.
---
Full diff: https://github.com/llvm/llvm-project/pull/131471.diff
1 Files Affected:
- (modified) .github/workflows/issue-write.yml (+5-5)
``````````diff
diff --git a/.github/workflows/issue-write.yml b/.github/workflows/issue-write.yml
index ad17d9a33ddb7..a2c4f58d6febe 100644
--- a/.github/workflows/issue-write.yml
+++ b/.github/workflows/issue-write.yml
@@ -39,7 +39,7 @@ jobs:
- name: 'Comment on PR'
if: steps.download-artifact.outputs.artifact-id != ''
- uses: actions/github-script at ffc2c79a5b2490bd33e0a41c1de74b877714d736 # v3.2.0
+ uses: actions/github-script at 60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
@@ -49,7 +49,7 @@ jobs:
return;
}
- let runInfo = await github.actions.getWorkflowRun({
+ let runInfo = await github.rest.actions.getWorkflowRun({
owner: context.repo.owner,
repo: context.repo.repo,
run_id: context.payload.workflow_run.id
@@ -122,7 +122,7 @@ jobs:
// Security check: Ensure that this comment was created by
// the github-actions bot, so a malicious input won't overwrite
// a user's comment.
- github.issues.getComment({
+ github.rest.issues.getComment({
owner: context.repo.owner,
repo: context.repo.repo,
comment_id: comment.id
@@ -132,7 +132,7 @@ jobs:
console.log("Invalid comment id: " + comment.id);
return;
}
- github.issues.updateComment({
+ github.rest.issues.updateComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: pr_number,
@@ -141,7 +141,7 @@ jobs:
});
});
} else {
- github.issues.createComment({
+ github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: pr_number,
``````````
</details>
https://github.com/llvm/llvm-project/pull/131471
More information about the llvm-commits
mailing list