From d4fb381387d164136afca02df2c78f853fe352d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Sat, 15 Aug 2026 14:10:31 -0700 Subject: [PATCH] chore: unquote the workflow name dep-review was the only workflow whose name was quoted. The value was already title case; the quoting was the inconsistency. Applies specify-workflow-naming verification 4.0. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/dep-review.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dep-review.yml b/.github/workflows/dep-review.yml index 6f754a072..65da2d4bc 100644 --- a/.github/workflows/dep-review.yml +++ b/.github/workflows/dep-review.yml @@ -1,5 +1,5 @@ --- -name: 'Dependency Review' +name: Dependency Review on: [pull_request] permissions: @@ -11,5 +11,5 @@ jobs: steps: - name: 'Checkout Repository' uses: actions/checkout@v7 - - name: 'Dependency Review' + - name: Dependency Review uses: actions/dependency-review-action@v5