2022-08-05 14:03:38 +02:00
|
|
|
---
|
|
|
|
# Copyright (c) Ansible Project
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-07-06 21:19:31 +02:00
|
|
|
name: "Code scanning - action"
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2020-07-06 21:24:45 +02:00
|
|
|
- cron: '26 19 * * 1'
|
2020-07-06 21:19:31 +02:00
|
|
|
|
2022-05-08 08:57:53 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-07-06 21:19:31 +02:00
|
|
|
jobs:
|
|
|
|
CodeQL-Build:
|
|
|
|
|
2022-05-08 08:57:53 +02:00
|
|
|
permissions:
|
|
|
|
actions: read # for github/codeql-action/init to get workflow details
|
|
|
|
contents: read # for actions/checkout to fetch code
|
|
|
|
security-events: write # for github/codeql-action/autobuild to send a status report
|
2020-07-06 21:19:31 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-05-06 17:55:59 +02:00
|
|
|
uses: actions/checkout@v3
|
2020-07-06 21:19:31 +02:00
|
|
|
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
|
|
- name: Initialize CodeQL
|
2022-05-06 17:56:45 +02:00
|
|
|
uses: github/codeql-action/init@v2
|
2020-07-06 21:19:31 +02:00
|
|
|
# Override language selection by uncommenting this and choosing your languages
|
|
|
|
# with:
|
|
|
|
# languages: go, javascript, csharp, python, cpp, java
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2022-05-06 17:56:45 +02:00
|
|
|
uses: github/codeql-action/analyze@v2
|