File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: CI-unixish
2
2
3
3
on : [push, pull_request]
4
4
5
+ permissions :
6
+ contents : read
7
+
5
8
jobs :
6
9
build :
7
10
23
26
24
27
steps :
25
28
- uses : actions/checkout@v4
29
+ with :
30
+ persist-credentials : false
26
31
27
32
- name : Install missing software on ubuntu
28
33
if : matrix.os == 'ubuntu-24.04'
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ name: CI-windows
6
6
7
7
on : [push,pull_request]
8
8
9
+ permissions :
10
+ contents : read
11
+
9
12
defaults :
10
13
run :
11
14
shell : cmd
23
26
24
27
steps :
25
28
- uses : actions/checkout@v4
29
+ with :
30
+ persist-credentials : false
26
31
27
32
- name : Setup msbuild.exe
28
33
uses : microsoft/setup-msbuild@v2
Original file line number Diff line number Diff line change @@ -4,13 +4,18 @@ name: clang-tidy
4
4
5
5
on : [push, pull_request]
6
6
7
+ permissions :
8
+ contents : read
9
+
7
10
jobs :
8
11
build :
9
12
10
13
runs-on : ubuntu-24.04
11
14
12
15
steps :
13
16
- uses : actions/checkout@v4
17
+ with :
18
+ persist-credentials : false
14
19
15
20
- name : Install missing software
16
21
run : |
You can’t perform that action at this time.
0 commit comments