Skip to content

feat: v2 Kotor-style tile kits and tile layout compile #356

feat: v2 Kotor-style tile kits and tile layout compile

feat: v2 Kotor-style tile kits and tile layout compile #356

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
#
# Microsoft Security DevOps (MSDO) is a command line application which integrates static analysis tools into the development cycle.
# MSDO installs, configures and runs the latest versions of static analysis tools
# (including, but not limited to, SDL/security and compliance tools).
#
# The Microsoft Security DevOps action is currently in beta and runs on the windows-latest queue,
# as well as Windows self hosted agents. ubuntu-latest support coming soon.
#
# For more information about the action , check out https://github.com/microsoft/security-devops-action
#
# Please note this workflow do not integrate your GitHub Org with Microsoft Defender For DevOps. You have to create an integration
# and provide permission before this can report data back to azure.
# Read the official documentation here : https://learn.microsoft.com/en-us/azure/defender-for-cloud/quickstart-onboard-github
name: "Microsoft Defender For Devops"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: '17 15 * * 3'
permissions:
actions: read
contents: read
id-token: write
security-events: write
jobs:
MSDO:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5
with:
dotnet-version: |
5.0.x
6.0.x
- name: Shorten workspace and temp paths on Windows
if: runner.os == 'Windows'
shell: pwsh
run: |
New-Item -ItemType Directory -Force -Path C:\msdo-temp | Out-Null
subst W: "$env:GITHUB_WORKSPACE"
"GITHUB_WORKSPACE=W:\" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
"RUNNER_TEMP=C:\msdo-temp" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
"TMP=C:\msdo-temp" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
"TEMP=C:\msdo-temp" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Shorten workspace and temp paths on Linux
if: runner.os == 'Linux'
shell: bash
run: |
mkdir -p /tmp/msdo
ln -sfn "$GITHUB_WORKSPACE" /tmp/msdo/workspace
{
echo "GITHUB_WORKSPACE=/tmp/msdo/workspace"
echo "RUNNER_TEMP=/tmp/msdo"
echo "TMPDIR=/tmp/msdo"
echo "TMP=/tmp/msdo"
echo "TEMP=/tmp/msdo"
} >> "$GITHUB_ENV"
- name: Run Microsoft Security DevOps
uses: microsoft/security-devops-action@v1.12.0
id: msdo
- name: Upload results to Security tab
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: ${{ steps.msdo.outputs.sarifFile }}
category: msdo-${{ matrix.os }}
- name: Remove Windows short path mapping
if: always() && runner.os == 'Windows'
shell: pwsh
run: |
subst W: /d