Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions .github/workflows/codeql-analysis-dotnet-8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
## original file was auto generated
## but was then customised for this specific project
##

name: "pipeline dot net 8.x"

on:
push:
branches: [ master.move-to-dotnet-8 ]
schedule:
# Run at 07:37 AM, every Friday
- cron: '37 7 * * 5'

jobs:
analyze:
name: Analyze

## Environment variable
#env:
# HELLO: 'WORLD'

permissions:
actions: read
contents: read
security-events: write

## For a list of available runner types, refer to
## https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
## TLDR choice of ubuntu-latest, windows-latest, and macos-latest
runs-on: windows-latest

strategy:
fail-fast: true
matrix:
language: [ 'csharp' ]

steps:

- name: Checkout repository
uses: actions/checkout@v4


# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x


# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2


- name: Initialize CodeQL tools for scanning.
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}


- name: Run ./build.ps1
run: |
powershell ./build.ps1 -execTest FALSE -execGenerateArtefact FALSE


- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@
## but was then customised for this specific project
##

name: "CodeQL"
name: "pipeline dot net framework 4.x"

on:
push:
branches: [ master, develop-pancakeslp ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master, develop-pancakeslp ]
branches: [ master, master.dependencies-2026-attempt2 ]
schedule:
# Run at 07:37 AM, every Friday
- cron: '37 7 * * 5'
Expand Down Expand Up @@ -62,7 +59,7 @@ jobs:


- name: Initialize CodeQL tools for scanning.
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}

Expand All @@ -73,4 +70,4 @@ jobs:


- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
Loading
Loading