@@ -407,7 +407,7 @@ jobs:
407407 - uses : google-github-actions/auth@7c6bc770dae815cd3e89ee6cdf493a5fab2cc093 # v3.0.0
408408 continue-on-error : true # if auth fails, bigquery driver tests should skip
409409 with :
410- workload_identity_provider : ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
410+ workload_identity_provider : ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }} # zizmor: ignore[secrets-outside-env]
411411 # XXX: https://github.com/actions/setup-go/issues/457
412412 # We can't use go-version-file for setup-go because it doesn't understand
413413 # the 'toolchain' parameter and staticcheck tends to need the latest Go
@@ -429,7 +429,7 @@ jobs:
429429 ./ci/scripts/go_build.sh "$(pwd)" "$(pwd)/build" "$HOME/local"
430430 - name : Go Test
431431 env :
432- SNOWFLAKE_URI : ${{ secrets.SNOWFLAKE_URI }}
432+ SNOWFLAKE_URI : ${{ secrets.SNOWFLAKE_URI }} # zizmor: ignore[secrets-outside-env]
433433 run : |
434434 ./ci/scripts/go_test.sh "$(pwd)" "$(pwd)/build" "$HOME/local"
435435
@@ -461,7 +461,7 @@ jobs:
461461 - uses : google-github-actions/auth@7c6bc770dae815cd3e89ee6cdf493a5fab2cc093 # v3.0.0
462462 continue-on-error : true # if auth fails, bigquery driver tests should skip
463463 with :
464- workload_identity_provider : ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }}
464+ workload_identity_provider : ${{ secrets.GCP_WORKLOAD_IDENTITY_PROVIDER }} # zizmor: ignore[secrets-outside-env]
465465 - name : Get required Go version
466466 run : |
467467 (. .env && echo "GO_VERSION=${GO}") >> $GITHUB_ENV
@@ -512,7 +512,7 @@ jobs:
512512
513513 - name : Go Test
514514 env :
515- SNOWFLAKE_URI : ${{ secrets.SNOWFLAKE_URI }}
515+ SNOWFLAKE_URI : ${{ secrets.SNOWFLAKE_URI }} # zizmor: ignore[secrets-outside-env]
516516 run : |
517517 export PATH=$RUNNER_TOOL_CACHE/go/${GO_VERSION}/${{ matrix.goarch }}/bin:$PATH
518518 ./ci/scripts/go_test.sh "$(pwd)" "$(pwd)/build" "$HOME/local"
0 commit comments