From 81bb0cecfd1d44e82638e32f11de3f5d7fa0d17b Mon Sep 17 00:00:00 2001 From: behnazh-w Date: Mon, 12 May 2025 17:53:06 +1000 Subject: [PATCH] build: fix the Semgrep Docker image path Signed-off-by: behnazh-w --- .github/workflows/build_semgrep_wheel.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_semgrep_wheel.yaml b/.github/workflows/build_semgrep_wheel.yaml index c2a15c532..fdb3b1456 100644 --- a/.github/workflows/build_semgrep_wheel.yaml +++ b/.github/workflows/build_semgrep_wheel.yaml @@ -49,5 +49,5 @@ jobs: WHEEL=$(find . -type f -name 'semgrep-*manylinux*.whl') echo "FROM scratch COPY ${WHEEL} /semgrep_wheel.whl" >> Dockerfile.semgrep - docker build -t ghcr.io/macaron/macaron-deps:latest -f Dockerfile.semgrep . - docker push ghcr.io/macaron/macaron-deps:latest + docker build -t ghcr.io/oracle/macaron-deps:latest -f Dockerfile.semgrep . + docker push ghcr.io/oracle/macaron-deps:latest