From aa860d98d7d1bf9e87bedd28c14787d8dcfe036a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 2 Oct 2025 21:46:44 +0000 Subject: [PATCH] :arrow_up: Updates peter-evans/create-or-update-comment action to v5 --- .github/workflows/closing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/closing.yml b/.github/workflows/closing.yml index adf1332..b9606a6 100644 --- a/.github/workflows/closing.yml +++ b/.github/workflows/closing.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-18.04 steps: - name: Add closed question comment - uses: peter-evans/create-or-update-comment@v1 + uses: peter-evans/create-or-update-comment@v5 if: (contains(github.event.issue.labels.*.name, 'question') && ! contains(github.event.issue.labels.*.name, 'wontfix')) || join(github.event.issue.labels.*.name) == '' with: token: ${{ secrets.GITHUB_TOKEN }} @@ -20,7 +20,7 @@ jobs: * In case you see a similar problem, please open a separate issue. * If you are happy with the outcome, don’t hesitate to support Weblate by making a [donation](https://ko-fi.com/alexrogalskiy). - name: Add closed issue comment - uses: peter-evans/create-or-update-comment@v1 + uses: peter-evans/create-or-update-comment@v5 if: "! contains(github.event.issue.labels.*.name, 'invalid') && ! contains(github.event.issue.labels.*.name, 'question') && ! contains(github.event.issue.labels.*.name, 'wontfix') && ! contains(github.event.issue.labels.*.name, 'duplicate') && ! contains(github.event.issue.labels.*.name, 'undecided') && ! contains(github.event.issue.labels.*.name, 'needinfo') && join(github.event.issue.labels.*.name) != ''" with: token: ${{ secrets.GITHUB_TOKEN }}