Skip to content

Commit 3963bb8

Browse files
authored
Bumping action version
1 parent 96fc6ce commit 3963bb8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/delete-comments.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- name: Check for specific strings in comment
1515
id: check_comment
16-
uses: actions/github-script@v6
16+
uses: actions/github-script@v7
1717
with:
1818
script: |
1919
const comment = context.payload.comment.body;
@@ -22,7 +22,7 @@ jobs:
2222
2323
- name: Delete comment if it contains any of the specific strings
2424
if: steps.check_comment.outputs.result == 'true'
25-
uses: actions/github-script@v6
25+
uses: actions/github-script@v7
2626
with:
2727
script: |
2828
const commentId = context.payload.comment.id;
@@ -34,7 +34,7 @@ jobs:
3434
3535
- name: Block user if comment contains any of the specific strings
3636
if: steps.check_comment.outputs.result == 'true'
37-
uses: actions/github-script@v6
37+
uses: actions/github-script@v7
3838
with:
3939
script: |
4040
const userId = context.payload.comment.user.id;

0 commit comments

Comments
 (0)