2022-04-12 09:00:54 +00:00
|
|
|
---
|
2020-12-02 23:48:39 +00:00
|
|
|
name: "CodeQL"
|
|
|
|
|
2023-01-25 19:12:26 +00:00
|
|
|
on:
|
2022-09-06 14:58:50 +00:00
|
|
|
workflow_call:
|
2020-12-02 23:48:39 +00:00
|
|
|
schedule:
|
2021-06-12 10:47:47 +00:00
|
|
|
- cron: "26 14 * * 1"
|
2020-12-02 23:48:39 +00:00
|
|
|
|
2022-09-08 04:27:16 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2022-09-19 08:17:46 +00:00
|
|
|
security-events: write
|
2022-09-08 04:27:16 +00:00
|
|
|
|
2020-12-02 23:48:39 +00:00
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
|
|
|
runs-on: ubuntu-latest
|
2022-04-12 09:00:54 +00:00
|
|
|
permissions:
|
|
|
|
security-events: write
|
2020-12-02 23:48:39 +00:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-06-12 10:47:47 +00:00
|
|
|
language: ["go", "javascript"]
|
2020-12-02 23:48:39 +00:00
|
|
|
|
|
|
|
steps:
|
2021-06-12 10:47:47 +00:00
|
|
|
- name: Checkout repository
|
2023-09-13 13:27:38 +00:00
|
|
|
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
|
|
|
|
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
|
2022-04-12 09:00:54 +00:00
|
|
|
with:
|
2023-08-14 21:14:09 +00:00
|
|
|
go-version: '>=1.21 <1.22'
|
2020-12-02 23:48:39 +00:00
|
|
|
|
2021-06-12 10:47:47 +00:00
|
|
|
- name: Initialize CodeQL
|
2023-09-13 13:27:38 +00:00
|
|
|
uses: github/codeql-action/init@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
|
2021-06-12 10:47:47 +00:00
|
|
|
with:
|
|
|
|
languages: ${{ matrix.language }}
|
2020-12-02 23:48:39 +00:00
|
|
|
|
2021-06-12 10:47:47 +00:00
|
|
|
- name: Autobuild
|
2023-09-13 13:27:38 +00:00
|
|
|
uses: github/codeql-action/autobuild@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
|
2020-12-02 23:48:39 +00:00
|
|
|
|
2021-06-12 10:47:47 +00:00
|
|
|
- name: Perform CodeQL Analysis
|
2023-09-13 13:27:38 +00:00
|
|
|
uses: github/codeql-action/analyze@00e563ead9f72a8461b24876bee2d0c2e8bd2ee8 # v2.21.5
|