From c47b3399130734d2aba48ec07688706a75bf085b Mon Sep 17 00:00:00 2001 From: Julien Date: Tue, 4 Feb 2025 19:52:05 +0100 Subject: [PATCH] Set codeql category for debian images (#400) Since we are now uploading two files per matrix job, we need to provide a custom `category` so that GitHub codeql can differentiate the runs. Fixes https://github.com/pulumi/pulumi-docker-containers/issues/399 --- .github/workflows/snyk-scan.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/snyk-scan.yml b/.github/workflows/snyk-scan.yml index 4d17e6d..bc360f2 100644 --- a/.github/workflows/snyk-scan.yml +++ b/.github/workflows/snyk-scan.yml @@ -172,6 +172,7 @@ jobs: uses: github/codeql-action/upload-sarif@v3 with: sarif_file: out.sarif + category: pulumi-${{ matrix.sdk }}${{ matrix.suffix }}-debian-amd64 - name: Set image name - arm64 run: | echo "IMAGE_NAME=${{ env.DOCKER_ORG }}/pulumi-${{ matrix.sdk }}${{ matrix.suffix }}:${{ env.PULUMI_VERSION }}-debian-arm64" >> $GITHUB_ENV @@ -189,6 +190,7 @@ jobs: uses: github/codeql-action/upload-sarif@v3 with: sarif_file: out.sarif + category: pulumi-${{ matrix.sdk }}${{ matrix.suffix }}-debian-arm64 ubi-sdk: name: UBI SDK images