File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -689,7 +689,7 @@ jobs:
689
689
steps :
690
690
- name : Check if a comment was already made
691
691
id : find-comment
692
- uses : actions/github-script@v6
692
+ uses : actions/github-script@v7
693
693
with :
694
694
script : |
695
695
const { data: comments } = await github.rest.issues.listComments({
@@ -733,7 +733,7 @@ jobs:
733
733
734
734
- name : Create comment on PR with links to plugin builds
735
735
if : ${{ steps.find-comment.outputs.result == 'null' }}
736
- uses : actions/github-script@v6
736
+ uses : actions/github-script@v7
737
737
with :
738
738
script : |
739
739
github.rest.issues.createComment({
@@ -745,7 +745,7 @@ jobs:
745
745
746
746
- name : Update comment on PR with links to plugin builds
747
747
if : ${{ steps.find-comment.outputs.result != 'null' }}
748
- uses : actions/github-script@v6
748
+ uses : actions/github-script@v7
749
749
with :
750
750
script : |
751
751
github.rest.issues.updateComment({
Original file line number Diff line number Diff line change 22
22
actions : write
23
23
steps :
24
24
- name : Bust cache
25
- uses : actions/github-script@v6
25
+ uses : actions/github-script@v7
26
26
with :
27
27
script : |
28
28
const caches = await github.rest.actions.getActionsCacheList({
You can’t perform that action at this time.
0 commit comments