2020-06-09 00:12:10 -04:00
|
|
|
name: "Code scanning - action"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: '0 12 * * 4'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
CodeQL-Build:
|
|
|
|
|
|
|
|
# CodeQL runs on ubuntu-latest and windows-latest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Install libraries
|
|
|
|
run: |
|
|
|
|
set -x
|
|
|
|
sudo apt-get update -q || :
|
|
|
|
sudo apt-get install --no-install-recommends -q -y build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm-dev bison autoconf ruby
|
|
|
|
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
|
|
|
|
2020-08-01 01:15:25 -04:00
|
|
|
- name: Remove an obsolete rubygems vendored file
|
|
|
|
run: sudo rm /usr/lib/ruby/vendor_ruby/rubygems/defaults/operating_system.rb
|
|
|
|
|
2020-06-09 00:12:10 -04:00
|
|
|
- name: Initialize CodeQL
|
|
|
|
uses: github/codeql-action/init@v1
|
|
|
|
with:
|
|
|
|
languages: cpp
|
2020-07-02 23:50:37 -04:00
|
|
|
config-file: ./.github/codeql/codeql-config.yml
|
2020-06-09 00:12:10 -04:00
|
|
|
|
|
|
|
- name: Autobuild
|
|
|
|
uses: github/codeql-action/autobuild@v1
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
|
|
|
uses: github/codeql-action/analyze@v1
|