From a6711cfdec4c6750bd77bb2875f0b7a80da855fb Mon Sep 17 00:00:00 2001 From: "internalautomation[bot]" <85681268+internalautomation[bot]@users.noreply.github.com> Date: Fri, 20 Dec 2024 14:50:37 -0800 Subject: [PATCH] GitHubSync update - master (#719) Co-authored-by: internalautomation[bot] <85681268+internalautomation[bot]@users.noreply.github.com> --- .github/workflows/nuget-audit.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/nuget-audit.yml diff --git a/.github/workflows/nuget-audit.yml b/.github/workflows/nuget-audit.yml new file mode 100644 index 00000000..2b9c6c9e --- /dev/null +++ b/.github/workflows/nuget-audit.yml @@ -0,0 +1,19 @@ +name: NuGet Audit +on: + workflow_dispatch: +env: + DOTNET_NOLOGO: true +jobs: + build: + name: Linux + runs-on: ubuntu-22.04 + steps: + - name: Checkout + uses: actions/checkout@v4.2.2 + - name: Setup .NET SDK + uses: actions/setup-dotnet@v4.1.0 + with: + global-json-file: global.json + - name: Restore + id: restore + run: dotnet restore src