diff --git a/.github/workflows/emoji-check.yml b/.github/workflows/emoji-check.yml index 006e25c3..3cd0ac66 100644 --- a/.github/workflows/emoji-check.yml +++ b/.github/workflows/emoji-check.yml @@ -56,7 +56,7 @@ jobs: - name: Comment on PR if: github.event_name == 'pull_request' && steps.emoji-check.outputs.emojis_found == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const fs = require('fs'); diff --git a/.github/workflows/flakiness-detection.yml b/.github/workflows/flakiness-detection.yml index 19033b6b..f6253bbb 100644 --- a/.github/workflows/flakiness-detection.yml +++ b/.github/workflows/flakiness-detection.yml @@ -79,7 +79,7 @@ jobs: - name: Comment on PR if flaky tests found if: failure() && steps.flakiness-check.outcome == 'failure' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const flakyTests = process.env.FLAKY_TESTS || 'Unknown tests';