Skip to content

Commit 346b0fe

Browse files
authored
fix: correct YAML indentation in codeql-analysis workflow (#128)
Fix incorrect indentation of 'Install pnpm' step which was nested inside the previous step. The step should be at the same level as other steps in the workflow.
1 parent 6802925 commit 346b0fe

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ jobs:
2929
steps:
3030
- name: Checkout repository
3131
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5
32+
with:
33+
persist-credentials: false
3234

33-
- name: Install pnpm
34-
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
35+
- name: Install pnpm
36+
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
3537

3638
# Initializes the CodeQL tools for scanning.
3739
- name: Initialize CodeQL

0 commit comments

Comments
 (0)