From e54ac5d59869341cc3ffb2e58fd8b0cba28ec7f7 Mon Sep 17 00:00:00 2001 From: aeneasr <3372410+aeneasr@users.noreply.github.com> Date: Fri, 10 Jan 2025 17:00:43 +0100 Subject: [PATCH] fix: remove hydra workaround --- .../repository/server/.github/workflows/cve-scan.yaml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/templates/repository/server/.github/workflows/cve-scan.yaml b/templates/repository/server/.github/workflows/cve-scan.yaml index b1335ce..47e6692 100644 --- a/templates/repository/server/.github/workflows/cve-scan.yaml +++ b/templates/repository/server/.github/workflows/cve-scan.yaml @@ -28,14 +28,7 @@ jobs: SHA_SHORT=$(git rev-parse --short HEAD) REPO_NAME=${{ github.event.repository.name }} - # Append -sqlite to SHA_SHORT if repo is hydra - if [ "${REPO_NAME}" = "hydra" ]; then - echo "Repo is hydra, appending -sqlite to SHA_SHORT" - IMAGE_NAME="oryd/${REPO_NAME}:${SHA_SHORT}-sqlite" - else - echo "Repo is not hydra, using default IMAGE_NAME" - IMAGE_NAME="oryd/${REPO_NAME}:${SHA_SHORT}" - fi + IMAGE_NAME="oryd/${REPO_NAME}:${SHA_SHORT}" # Output values for debugging echo "Values to be set:"