Skip to content

Potential fix for code scanning alert no. 3: Workflow does not contain permissions #3

Potential fix for code scanning alert no. 3: Workflow does not contain permissions

Potential fix for code scanning alert no. 3: Workflow does not contain permissions #3

Workflow file for this run

name: CI Build
# Builds on every commit to verify everything compiles.
# Does NOT publish anything - just verification.
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Build Solution
run: dotnet build OpenSourceToolkit.Net.sln -c Release -p:UseLocalFlowery=false