Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Approve Pull Request
if: steps.parse.outputs.bump_type != 'major' && steps.parse.outputs.bump_type != 'unknown'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
github.rest.pulls.createReview({
Expand All @@ -77,7 +77,7 @@ jobs:

- name: Enable Auto-Merge (Squash)
if: steps.parse.outputs.bump_type != 'major' && steps.parse.outputs.bump_type != 'unknown'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
github.rest.pulls.merge({
Expand All @@ -89,7 +89,7 @@ jobs:

- name: Skip auto-merge for major updates
if: steps.parse.outputs.bump_type == 'major'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
github.rest.issues.createComment({
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lighthouse-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:

- name: Comment results on PR
if: github.event_name == 'pull_request' && always()
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
const fs = require('fs');
Expand Down
Loading