File tree 6 files changed +26
-1
lines changed
6 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 17
17
find-nightly :
18
18
name : Find Nightly Release
19
19
runs-on : ubuntu-latest
20
+ permissions :
21
+ contents : read
20
22
outputs :
21
23
url : ${{ steps.get-url.outputs.nightly-url }}
22
24
steps :
33
35
set-matrix :
34
36
name : Set Matrix for cli-test
35
37
runs-on : ubuntu-latest
38
+ permissions :
39
+ contents : read
36
40
steps :
37
41
- name : Checkout
38
42
uses : actions/checkout@v4
47
51
runs-on : ${{ matrix.os }}
48
52
needs : [find-nightly, set-matrix]
49
53
timeout-minutes : 30
54
+ permissions :
55
+ contents : read
50
56
strategy :
51
57
matrix :
52
58
os : [ubuntu-latest, windows-latest]
Original file line number Diff line number Diff line change 11
11
jobs :
12
12
codeql :
13
13
runs-on : ubuntu-latest
14
+ strategy :
15
+ matrix :
16
+ language :
17
+ - javascript
18
+ - actions
19
+ fail-fast : false
14
20
15
21
permissions :
16
22
contents : read
24
30
- name : Initialize CodeQL
25
31
uses : github/codeql-action/init@main
26
32
with :
27
- languages : javascript
33
+ languages : ${{ matrix.language }}
28
34
config-file : ./.github/codeql/codeql-config.yml
29
35
tools : latest
30
36
Original file line number Diff line number Diff line change 5
5
pull_request :
6
6
branches : [main]
7
7
8
+ permissions :
9
+ contents : read
10
+
8
11
jobs :
9
12
e2e-test :
10
13
name : E2E Test
Original file line number Diff line number Diff line change 3
3
issues :
4
4
types : [opened]
5
5
6
+ permissions :
7
+ issues : write
8
+
6
9
jobs :
7
10
label :
8
11
name : Label issue
Original file line number Diff line number Diff line change 7
7
branches :
8
8
- main
9
9
10
+ permissions :
11
+ contents : read
12
+
10
13
jobs :
11
14
build :
12
15
name : Build
Original file line number Diff line number Diff line change 16
16
build :
17
17
name : Release
18
18
runs-on : ubuntu-latest
19
+ permissions :
20
+ contents : read
19
21
steps :
20
22
- name : Checkout
21
23
uses : actions/checkout@v4
@@ -156,6 +158,8 @@ jobs:
156
158
needs : build
157
159
environment : publish-open-vsx
158
160
runs-on : ubuntu-latest
161
+ permissions :
162
+ contents : read
159
163
env :
160
164
OPEN_VSX_TOKEN : ${{ secrets.OPEN_VSX_TOKEN }}
161
165
steps :
You can’t perform that action at this time.
0 commit comments