Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Comment on major updates
if: steps.metadata.outputs.update-type == 'version-update:semver-major'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
github.rest.issues.createComment({
Expand All @@ -53,7 +53,7 @@ jobs:
})

- name: Label based on update type
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const updateType = '${{ steps.metadata.outputs.update-type }}';
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- name: Create issue if URLs are broken
if: failure()
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const title = '🔗 Broken URLs detected in manifests';
Expand Down
Loading