Skip to content

Commit ab80232

Browse files
authored
Merge pull request #109 from objectstack-ai/dependabot/github_actions/actions/github-script-8
2 parents 7da1c6a + bbffe3e commit ab80232

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666

6767
- name: Comment on major updates
6868
if: steps.metadata.outputs.update-type == 'version-update:semver-major'
69-
uses: actions/github-script@v7
69+
uses: actions/github-script@v8
7070
with:
7171
script: |
7272
github.rest.issues.createComment({

.github/workflows/pr-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
- name: Comment on PR
4848
if: success()
49-
uses: actions/github-script@v7
49+
uses: actions/github-script@v8
5050
with:
5151
script: |
5252
const message = `✅ All checks passed!\n\n- ✅ Type check passed\n- ✅ Tests passed\n- ✅ Lint check completed`;

.github/workflows/shadcn-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959

6060
- name: Create issue if components are outdated
6161
if: failure()
62-
uses: actions/github-script@v7
62+
uses: actions/github-script@v8
6363
with:
6464
script: |
6565
const fs = require('fs');

.github/workflows/size-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
echo "- ⚠️ Plugin packages should be < 150KB gzipped" >> size-report.md
7474
7575
- name: Comment PR
76-
uses: actions/github-script@v7
76+
uses: actions/github-script@v8
7777
with:
7878
script: |
7979
const fs = require('fs');

0 commit comments

Comments
 (0)