From 10ca0ef770f6f3200813923a88a35165f2a2b7d1 Mon Sep 17 00:00:00 2001 From: Kim Fehrs Date: Mon, 25 Mar 2024 10:58:03 +0100 Subject: [PATCH] fix an actionlint warning --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f71d2d2b..6cb87a11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -518,9 +518,9 @@ jobs: export DOCKER_COMPOSE_LOCATION="/usr/local/bin/docker-compose" ./babylonnode monitoring config \ -m MONITOR_CORE \ - -cm $NGINX_METRICS_PASSWORD \ - -gm $NGINX_METRICS_PASSWORD \ - -am $NGINX_METRICS_PASSWORD + -cm "$NGINX_METRICS_PASSWORD" \ + -gm "$NGINX_METRICS_PASSWORD" \ + -am "$NGINX_METRICS_PASSWORD" ./babylonnode monitoring install -a env: NGINX_ADMIN_PASSWORD: ${{secrets.NGINX_ADMIN_PASSWORD}}