From 0300991652b89464eaed256c4babc0228ba73328 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 27 May 2026 13:40:35 +0000 Subject: [PATCH] chore: update actions/github-script from v6 to v7 in repository_lockdown_check.yml Co-authored-by: T-Gro <46543583+T-Gro@users.noreply.github.com> --- .github/workflows/repository_lockdown_check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/repository_lockdown_check.yml b/.github/workflows/repository_lockdown_check.yml index 95671a1a338..4676718bf0e 100644 --- a/.github/workflows/repository_lockdown_check.yml +++ b/.github/workflows/repository_lockdown_check.yml @@ -35,7 +35,7 @@ jobs: # If not, create a new comment - name: Create comment if: steps.fc.outputs.comment-id == '' && failure() - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: github-token: ${{ github.token }} script: | @@ -50,7 +50,7 @@ jobs: # If yes, update the comment - name: Update comment if: steps.fc.outputs.comment-id != '' && failure() - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: github-token: ${{ github.token }} script: | @@ -65,7 +65,7 @@ jobs: # If comment exists, but we are no longer in maintenance mode, delete the comment. - name: Delete comment if: steps.fc.outputs.comment-id != '' && success() - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: github-token: ${{ github.token }} script: |