From ab2692079d8b340953a0c25d35bc2f041561f56b Mon Sep 17 00:00:00 2001 From: Dylan Pulver Date: Tue, 25 Aug 2026 17:57:45 +0300 Subject: [PATCH] [ci] Bump lock-threads to v6 in target repository lock workflow The root .github/workflows/lock.yaml moved to v6 in #8339, but the copy under build/target-repository/ stayed on v5. That copy ships to rectorphp/rector, whose weekly lock job has failed every run since 2026-05-24 with: "github-token" length must be less than or equal to 100 characters long v5 declares 'github-token': Joi.string().trim().max(100) in src/schema.js and the token GitHub issues is now longer than that. v6 raises the cap to 1000. --- build/target-repository/.github/workflows/lock.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/target-repository/.github/workflows/lock.yaml b/build/target-repository/.github/workflows/lock.yaml index 00da1a3e759..d130363e839 100644 --- a/build/target-repository/.github/workflows/lock.yaml +++ b/build/target-repository/.github/workflows/lock.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: dessant/lock-threads@v5 + - uses: dessant/lock-threads@v6 with: github-token: ${{ secrets.GITHUB_TOKEN }}