1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/.github/workflows/codeql-analysis.yml

37 lines
933 B
YAML
Raw Normal View History

---
# 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'
workflow_dispatch:
2020-07-06 21:19:31 +02:00
permissions:
contents: read
2020-07-06 21:19:31 +02:00
jobs:
CodeQL-Build:
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
uses: actions/checkout@v4
2020-07-06 21:19:31 +02:00
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: python
2020-07-06 21:19:31 +02:00
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2