From ee5036baf24bd9995e135a310d466ee43c29362d Mon Sep 17 00:00:00 2001 From: "internalautomation[bot]" <85681268+internalautomation[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 00:32:52 +0000 Subject: [PATCH] GitHubSync update - master (#754) Co-authored-by: internalautomation[bot] <85681268+internalautomation[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 6 +++--- .github/workflows/nuget-audit.yml | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/nuget-audit.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e34c2ce6..d9c1b877 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,7 +81,7 @@ jobs: tag: TimeoutMigrationTool - name: Setup Oracle if: contains(matrix.engines, 'Oracle') - uses: Particular/setup-oracle-action@v1.5.0 + uses: Particular/setup-oracle-action@v1.6.0 with: connection-string-name: OracleConnectionString tag: TimeoutMigrationTool @@ -89,7 +89,7 @@ jobs: registry-password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Setup RabbitMQ if: contains(matrix.engines, 'RabbitMQ') - uses: Particular/setup-rabbitmq-action@v1.7.0 + uses: Particular/setup-rabbitmq-action@v1.7.1 with: connection-string-name: RabbitMqConnectionString host-env-var-name: RabbitMqHost @@ -105,7 +105,7 @@ jobs: - name: Setup RavenDB4 if: contains(matrix.engines, 'RavenDB4') id: setup-ravendb - uses: Particular/setup-ravendb-action@v1.7.0 + uses: Particular/setup-ravendb-action@v1.8.0 with: single-connection-string-name: Raven4Url ravendb-license: ${{ secrets.RAVENDB_LICENSE }} 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