From 219ad36f66ecef1ab70d7d443221adacbe50013f Mon Sep 17 00:00:00 2001 From: "internalautomation[bot]" <85681268+internalautomation[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 01:00:17 +0000 Subject: [PATCH] GitHubSync update - release-6.1 (#4670) * GitHubSync update - release-6.1 * Bump actions --------- Co-authored-by: internalautomation[bot] <85681268+internalautomation[bot]@users.noreply.github.com> Co-authored-by: Tamara Rivera --- .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 0000000000..2b9c6c9ef7 --- /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