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
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: 🏷️ Label Dependabot PRs for auto-merge
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const prTitle = context.payload.pull_request.title.toLowerCase();
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bump-major.yml
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ jobs:

- name: 🎉 Create GitHub Release
if: steps.changes_check.outputs.has_changes == 'true' && steps.tag_check.outputs.should_skip == 'false'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const { repo, owner } = context.repo;
Expand Down Expand Up @@ -448,7 +448,7 @@ jobs:

- name: 🚀 Trigger PyPI Release Workflow
if: steps.changes_check.outputs.has_changes == 'true' && steps.tag_check.outputs.should_skip == 'false'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
try {
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bump-minor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ jobs:

- name: 🎉 Create GitHub Release
if: steps.changes_check.outputs.has_changes == 'true' && steps.tag_check.outputs.should_skip == 'false'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const { repo, owner } = context.repo;
Expand Down Expand Up @@ -452,7 +452,7 @@ jobs:

- name: 🚀 Trigger PyPI Release Workflow
if: steps.changes_check.outputs.has_changes == 'true' && steps.tag_check.outputs.should_skip == 'false'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
try {
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bump-patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ jobs:

- name: 🎉 Create GitHub Release
if: steps.changes_check.outputs.has_changes == 'true' && steps.tag_check.outputs.should_skip == 'false'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const { repo, owner } = context.repo;
Expand Down Expand Up @@ -448,7 +448,7 @@ jobs:

- name: 🚀 Trigger PyPI Release Workflow
if: steps.changes_check.outputs.has_changes == 'true' && steps.tag_check.outputs.should_skip == 'false'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
try {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-performance-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:

steps:
- name: 🚀 Trigger datason-benchmarks repository
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.BENCHMARK_REPO_TOKEN }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:

- name: 📢 Create release discussion
if: needs.validate-release.outputs.is_prerelease == 'false'
uses: actions/github-script@v7
uses: actions/github-script@v8
continue-on-error: true # Don't fail the workflow if discussion creation fails
with:
script: |
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:

steps:
- name: 🚀 Trigger PyPI publish
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
// Trigger the existing publish workflow
Expand Down
Loading