-
Notifications
You must be signed in to change notification settings - Fork 62
112 lines (90 loc) · 4 KB
/
codeql-analysis.yml
File metadata and controls
112 lines (90 loc) · 4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL Security Scan"
on:
push:
branches: [ master, Features/Linux-Migration, Releases/*, Releases/*/*]
pull_request:
branches: [ master, Releases/*, Releases/*/*]
schedule:
- cron: '0 0 * * 0'
jobs:
analyze:
name: CodeQL - ${{ matrix.language }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'csharp', 'javascript' ]
os: [windows-latest]
# ------------------------------------------------------------------------------------------------------
# Checkout Ginger Repository
# ------------------------------------------------------------------------------------------------------
steps:
- name: Checkout repository
uses: actions/checkout@v3
# ------------------------------------------------------------------------------------------------------
# Initialize CodeQL
# ------------------------------------------------------------------------------------------------------
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config-file: ./.github/workflows/Config/codeql-config.yml
# ------------------------------------------------------------------------------------------------------
# Install .Net core SDK 8.0.100
# ------------------------------------------------------------------------------------------------------
- name: Install .NET 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.100'
# ------------------------------------------------------------------------------------------------------
# Install Mono - for Ubuntu & macOS as pre-requisite for building Ginger
# ------------------------------------------------------------------------------------------------------
- name: Install Mono - Linux
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y mono-complete
- name: 'Install Mono - macOS'
if: runner.os == 'macOS'
run: brew install mono
# ------------------------------------------------------------------------------------------------------
# Build && Publish Ginger Solution
# ------------------------------------------------------------------------------------------------------
- name: Setup Nuget
uses: Nuget/setup-nuget@v1.0.5
- name: Restore Nuget Packages
run: nuget restore ./Ginger/Ginger.sln
- name: Add msbuild to PATH
if: runner.os == 'windows'
uses: microsoft/setup-msbuild@v1.0.2
- name: Build Windows Ginger Solution
if: runner.os == 'windows'
run: msbuild ./Ginger/Ginger.sln /p:DebugSymbols=true /p:DebugType=full /p:Configuration=Release
- name: Publish GingerRuntime - Linux
if: runner.os == 'Linux'
run: dotnet publish ./Ginger/GingerRuntime/GingerRuntime.csproj --runtime linux-x64 --self-contained true -c Release
- name: Publish GingerRuntime - macOS
if: runner.os == 'macOS'
run: dotnet publish ./Ginger/GingerRuntime/GingerRuntime.csproj --runtime osx-x64 --self-contained true -c Release
# ------------------------------------------------------------------------------------------------------
# Security Scan with CodeQL
# ------------------------------------------------------------------------------------------------------
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"