Skip to content

Commit 2a61f83

Browse files
authored
Merge pull request #7683 from ampproject/dependabot/github_actions/actions/github-script-7
Bump actions/github-script from 6 to 7
2 parents 3c1cbb7 + b0746ca commit 2a61f83

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .github/workflows/build-test-measure.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ jobs:
689689
steps:
690690
- name: Check if a comment was already made
691691
id: find-comment
692-
uses: actions/github-script@v6
692+
uses: actions/github-script@v7
693693
with:
694694
script: |
695695
const { data: comments } = await github.rest.issues.listComments({
@@ -733,7 +733,7 @@ jobs:
733733
734734
- name: Create comment on PR with links to plugin builds
735735
if: ${{ steps.find-comment.outputs.result == 'null' }}
736-
uses: actions/github-script@v6
736+
uses: actions/github-script@v7
737737
with:
738738
script: |
739739
github.rest.issues.createComment({
@@ -745,7 +745,7 @@ jobs:
745745
746746
- name: Update comment on PR with links to plugin builds
747747
if: ${{ steps.find-comment.outputs.result != 'null' }}
748-
uses: actions/github-script@v6
748+
uses: actions/github-script@v7
749749
with:
750750
script: |
751751
github.rest.issues.updateComment({

Diff for: .github/workflows/cache-buster.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
actions: write
2323
steps:
2424
- name: Bust cache
25-
uses: actions/github-script@v6
25+
uses: actions/github-script@v7
2626
with:
2727
script: |
2828
const caches = await github.rest.actions.getActionsCacheList({

0 commit comments

Comments
 (0)