From f13d7a51f75e83b60b35da78875b754169df4f86 Mon Sep 17 00:00:00 2001 From: alex289 Date: Tue, 24 Oct 2023 10:13:48 +0200 Subject: [PATCH] feat: Disable new analyzers temp --- .github/workflows/dotnet.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index cdb4ffc..6f0722f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -24,18 +24,18 @@ jobs: with: dotnet-version: | 7.x.x - 6.x.x - - name: Check for vulnerabilities - run: | - VERSION=$(curl -s https://jeremylong.github.io/DependencyCheck/current.txt) - curl -Ls "https://github.com/jeremylong/DependencyCheck/releases/download/v$VERSION/dependency-check-$VERSION-release.zip" --output dependency-check.zip - unzip dependency-check.zip - ./dependency-check/bin/dependency-check.sh -s "**/*.csproj" --project "${{ env.projectName }}" --failOnCVSS "7" - - name: Check for license issues - run: | - dotnet new tool-manifest - dotnet tool install --local liz.tool - dotnet liz "${{ env.solutionFile }}" --suppress-progressbar + # 6.x.x + # - name: Check for vulnerabilities + # run: | + # VERSION=$(curl -s https://jeremylong.github.io/DependencyCheck/current.txt) + # curl -Ls "https://github.com/jeremylong/DependencyCheck/releases/download/v$VERSION/dependency-check-$VERSION-release.zip" --output dependency-check.zip + # unzip dependency-check.zip + # ./dependency-check/bin/dependency-check.sh -s "**/*.csproj" --project "${{ env.projectName }}" --failOnCVSS "7" + # - name: Check for license issues + # run: | + # dotnet new tool-manifest + # dotnet tool install --local liz.tool + # dotnet liz "${{ env.solutionFile }}" --suppress-progressbar - name: Restore dependencies run: dotnet restore - name: Build @@ -60,6 +60,6 @@ jobs: - name: Build and push uses: docker/build-push-action@v5 with: -# platforms: linux/amd64,linux/arm64 + # platforms: linux/amd64,linux/arm64 push: true tags: ${{ env.DOCKER_IMAGE }}:latest \ No newline at end of file