mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-25 07:48:52 +00:00
6efb279bfa
a9584e3d1ci: bump GitHub workflow actions to latest versionsf37ee374dFix methods related to time.Aftera49214057Correct heading render hook example4b696f936Update README.mdb5a6e4039Clean up the contributing sectiona5d79ed19Fixed typo: instea → instead6150a60e3Remove the "local file templates" page9395743dcUpdate/vendor theme33d8c10ccRemove output format "name" parameter7200ad97dAdd security section to resources.GetRemote page3f1e056b2Remove erroneous front matter field07c9a7e42Add alpha index to glossary6619c8aa0Fix Page.Params example145a92359Simplify string concat example in math.Add42488bb09Add string concat example to math.Addeb20521a2Fix flash of unstyled content with mathematical markup74603bebeFix typo in 'typesetting' git-subtree-dir: docs git-subtree-split:a9584e3d14
27 lines
495 B
YAML
27 lines
495 B
YAML
name: "CodeQL"
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 1 * *"
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v3
|
|
with:
|
|
languages: "javascript"
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v3
|