Skip to content

Commit

Permalink
Bump actions/github-script from 6 to 7
Browse files Browse the repository at this point in the history
Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v6...v7)

---
updated-dependencies:
- dependency-name: actions/github-script
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 9, 2024
1 parent 99450c0 commit b0746ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-measure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ jobs:
steps:
- name: Check if a comment was already made
id: find-comment
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const { data: comments } = await github.rest.issues.listComments({
Expand Down Expand Up @@ -733,7 +733,7 @@ jobs:
- name: Create comment on PR with links to plugin builds
if: ${{ steps.find-comment.outputs.result == 'null' }}
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
Expand All @@ -745,7 +745,7 @@ jobs:
- name: Update comment on PR with links to plugin builds
if: ${{ steps.find-comment.outputs.result != 'null' }}
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
github.rest.issues.updateComment({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cache-buster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
actions: write
steps:
- name: Bust cache
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const caches = await github.rest.actions.getActionsCacheList({
Expand Down

0 comments on commit b0746ca

Please sign in to comment.