Files
Umbraco-CMS/.github/workflows/codeql-analysis.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 21: mapping key "permissions" already defined at line 16
2022-09-20 09:13:22 +02:00

49 lines
1.2 KiB
YAML

name: "Code scanning - action"
on:
push:
branches: ['*/dev','*/contrib']
pull_request:
# The branches below must be a subset of the branches above
branches: ['*/dev','*/contrib']
permissions:
contents: read
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/analyze to upload SARIF results
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
config-file: ./.github/config/codeql-config.yml
- name: Setup dotnet
uses: actions/setup-dotnet@v2
with:
dotnet-version: '7.x'
include-prerelease: true
- name: dotnet build
run: dotnet build umbraco.sln -c SkipTests
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2