From bb9a01195d588df95f38589b704dfa8c09739cff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 03:20:31 +0000 Subject: [PATCH] Bump actions/github-script from 7.0.1 to 8.0.0 Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.1 to 8.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.1...v8.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/made-for-esphome.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/made-for-esphome.yml b/.github/workflows/made-for-esphome.yml index 66bc10e92..142203092 100644 --- a/.github/workflows/made-for-esphome.yml +++ b/.github/workflows/made-for-esphome.yml @@ -16,7 +16,7 @@ jobs: # Check pull request does not already have `made-for-esphome` label - name: Check for existing label id: check-label - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8.0.0 with: script: | const labels = context.payload.pull_request.labels.map(label => label.name); @@ -39,7 +39,7 @@ jobs: - name: Check for made-for-esphome id: check-made-for-esphome - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8.0.0 with: script: | // Get the base branch from the pull request @@ -63,7 +63,7 @@ jobs: - name: Checkout code uses: actions/checkout@v5 - name: Update Pull Request - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8.0.0 with: script: | const pr = context.payload.pull_request;