diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index afbf34f..b596dfd 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -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(); diff --git a/.github/workflows/bump-major.yml b/.github/workflows/bump-major.yml index 1990aa5..1fe8aff 100644 --- a/.github/workflows/bump-major.yml +++ b/.github/workflows/bump-major.yml @@ -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; @@ -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 { diff --git a/.github/workflows/bump-minor.yml b/.github/workflows/bump-minor.yml index a6d5b7a..e11c24e 100644 --- a/.github/workflows/bump-minor.yml +++ b/.github/workflows/bump-minor.yml @@ -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; @@ -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 { diff --git a/.github/workflows/bump-patch.yml b/.github/workflows/bump-patch.yml index 8f2d437..b72e197 100644 --- a/.github/workflows/bump-patch.yml +++ b/.github/workflows/bump-patch.yml @@ -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; @@ -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 { diff --git a/.github/workflows/pr-performance-check.yml b/.github/workflows/pr-performance-check.yml index 2d71de5..a5f4419 100644 --- a/.github/workflows/pr-performance-check.yml +++ b/.github/workflows/pr-performance-check.yml @@ -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: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 88cdd8f..8521b2f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: | @@ -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