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