From f837e8e76159827db03e59d5fe00575955d4a3af Mon Sep 17 00:00:00 2001 From: Aditya Sharad Date: Tue, 3 Jan 2023 13:00:12 -0800 Subject: [PATCH] Code scanning: Add step titles to workflow --- .github/workflows/codeql.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index c0c07a833..a9c45b544 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -81,8 +81,10 @@ jobs: security-events: write steps: - - uses: actions/checkout@v3 - - uses: ./init + - name: Checkout + uses: actions/checkout@v3 + - name: Initialize CodeQL + uses: ./init id: init with: languages: javascript @@ -91,4 +93,5 @@ jobs: # confirm steps.init.outputs.codeql-path points to the codeql binary - name: Print CodeQL Version run: ${{steps.init.outputs.codeql-path}} version --format=json - - uses: ./analyze + - name: Perform CodeQL Analysis + uses: ./analyze