We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfab0ee commit 8e0b4bfCopy full SHA for 8e0b4bf
.github/workflows/ci.yml
@@ -9,6 +9,9 @@ on:
9
pull_request:
10
branches: [ main ]
11
12
+permissions:
13
+ contents: read # to fetch code (actions/checkout)
14
+
15
jobs:
16
build:
17
@@ -21,6 +24,8 @@ jobs:
21
24
22
25
steps:
23
26
- uses: actions/checkout@v3
27
+ with:
28
+ persist-credentials: false
29
30
- name: Use Node.js version ${{ matrix.node-version }}
31
uses: actions/setup-node@v3
.github/workflows/codeql.yml
@@ -39,6 +39,8 @@ jobs:
39
40
- name: Checkout repository
41
uses: actions/checkout@v3
42
43
44
45
# Initializes the CodeQL tools for scanning.
46
- name: Initialize CodeQL
0 commit comments