From bfbcd062ba9aed9bbe661b6d1ffe329cc8038812 Mon Sep 17 00:00:00 2001 From: Teddy <133549781+iaiX@users.noreply.github.com> Date: Tue, 1 Aug 2023 10:13:16 +1000 Subject: [PATCH 1/2] Create dependabotX.yml Input Signed-off-by: Teddy <133549781+iaiX@users.noreply.github.com> --- .github/dependabotX.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabotX.yml diff --git a/.github/dependabotX.yml b/.github/dependabotX.yml new file mode 100644 index 000000000..ac6621f19 --- /dev/null +++ b/.github/dependabotX.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" From 0306c6041d848a8fdd247ab53a797e773575a4df Mon Sep 17 00:00:00 2001 From: Teddy <133549781+iaiX@users.noreply.github.com> Date: Tue, 1 Aug 2023 11:18:46 +1000 Subject: [PATCH 2/2] Create defender-for-devops.yml Micsoft Def Signed-off-by: Teddy <133549781+iaiX@users.noreply.github.com> --- .github/workflows/defender-for-devops.yml | 47 +++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/defender-for-devops.yml diff --git a/.github/workflows/defender-for-devops.yml b/.github/workflows/defender-for-devops.yml new file mode 100644 index 000000000..591d460a1 --- /dev/null +++ b/.github/workflows/defender-for-devops.yml @@ -0,0 +1,47 @@ +# 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: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '16 12 * * 6' + +jobs: + MSDO: + # currently only windows latest is supported + runs-on: windows-latest + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-dotnet@v3 + with: + dotnet-version: | + 5.0.x + 6.0.x + - name: Run Microsoft Security DevOps + uses: microsoft/security-devops-action@v1.6.0 + id: msdo + - name: Upload results to Security tab + uses: github/codeql-action/upload-sarif@v2 + with: + sarif_file: ${{ steps.msdo.outputs.sarifFile }}