You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added clang-tidy
- Added CI Script to build FileShare on different platforms
- Building CLI or GUI is now optional
- CLI now supports custom config file, as well as many commands in
interactive mode (Config edit, peer management, send/list/receive file)
# Consider using larger runners for possible analysis time improvements.
20
+
runs-on: ubuntu-latest
21
+
timeout-minutes: 360
22
+
permissions:
23
+
actions: read
24
+
contents: read
25
+
security-events: write
26
+
27
+
steps:
28
+
- name: Checkout repository
29
+
uses: actions/checkout@v3
30
+
31
+
# Initializes the CodeQL tools for scanning.
32
+
- name: Initialize CodeQL
33
+
uses: github/codeql-action/init@v3
34
+
with:
35
+
languages: 'c-cpp'
36
+
# If you wish to specify custom queries, you can do so here or in a config file.
37
+
# By default, queries listed here will override any specified in a config file.
38
+
# Prefix the list here with "+" to use these queries and those in the config file.
39
+
40
+
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
41
+
# queries: security-extended,security-and-quality
42
+
43
+
44
+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
45
+
# If this step fails, then you should remove it and run the build manually (see below)
46
+
- name: Autobuild
47
+
uses: github/codeql-action/autobuild@v3
48
+
49
+
- name: Perform CodeQL Analysis
50
+
uses: github/codeql-action/analyze@v3
51
+
with:
52
+
category: "/language:c-cpp"
53
+
54
+
flawfinder:
55
+
name: Flawfinder
56
+
runs-on: ubuntu-latest
57
+
permissions:
58
+
actions: read
59
+
contents: read
60
+
security-events: write
61
+
steps:
62
+
- name: Checkout code
63
+
uses: actions/checkout@v3
64
+
65
+
- name: flawfinder_scan
66
+
uses: david-a-wheeler/flawfinder@2.0.19
67
+
with:
68
+
arguments: '--sarif ./'
69
+
output: 'flawfinder_results.sarif'
70
+
71
+
- name: Upload analysis results to GitHub Security tab
0 commit comments