From dada78485d6b2b310d433af366da35a70cf01102 Mon Sep 17 00:00:00 2001 From: Patrik Csak Date: Thu, 16 Apr 2026 21:50:30 -0700 Subject: [PATCH] Fix typo in GOOGLE_APPLICATION_CREDENTIALS env var name (#547) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 56ebad1..7c6a070 100644 --- a/README.md +++ b/README.md @@ -751,7 +751,7 @@ jobs: #### GCR (Google Container Registry) Trivy uses Google Cloud SDK. You don't need to install `gcloud` command. -If you want to use target project's repository, you can set it via `GOOGLE_APPLICATION_CREDENTIAL`. +If you want to use target project's repository, you can set it via `GOOGLE_APPLICATION_CREDENTIALS`. ```yaml name: build on: @@ -777,7 +777,7 @@ jobs: format: 'sarif' output: 'trivy-results.sarif' env: - GOOGLE_APPLICATION_CREDENTIAL: /path/to/credential.json + GOOGLE_APPLICATION_CREDENTIALS: /path/to/credential.json - name: Upload Trivy scan results to GitHub Security tab uses: github/codeql-action/upload-sarif@v4