From 5f794e4e25012b454ebae63110cda7a18f6cd89c Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Wed, 24 Sep 2025 20:48:06 -0400 Subject: [PATCH] fix gitlab-ci to use alternative image --- .gitlab-ci.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8a5843e..283dc1b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,17 +1,13 @@ --- gitleaks_scan: - image: - name: zricethezav/gitleaks:latest - entrypoint: [""] + image: ghcr.io/zricethezav/gitleaks/v8:latest stage: test tags: [gitleaks, scan] script: - gitleaks detect --source=. --config=gitleaks.toml --report-format=json --report-path=gitleaks-report.json allow_failure: false only: [main, testing, merge_requests] - artifacts: when: always - paths: - - gitleaks-report.json - expire_in: 1 week \ No newline at end of file + paths: [gitleaks-report.json] + expire_in: 1 week