From 1ce26b45c07c0aeb5e3d4ccc47dae1fcd84916b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Vu=C4=8Dica?= Date: Wed, 8 May 2024 12:12:39 +0100 Subject: [PATCH] .github/workflows: Avoiding bash elements that might confuse yaml parser. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae505113..2f40472f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: - if: ${{ steps.bazel-cache.outputs.cache-hit != 'true' }} name: List the state of node modules continue-on-error: true - run: echo "Stub action: merely printing a notice that there was a cache miss" + run: echo Stub action merely printing a notice that there was a cache miss # More useful with e.g. npm. - name: Checkout submodules @@ -96,7 +96,7 @@ jobs: - if: ${{ steps.bazel-cache.outputs.cache-hit != 'true' }} name: List the state of node modules continue-on-error: true - run: echo "Stub action: merely printing a notice that there was a cache miss" + run: echo Stub action merely printing a notice that there was a cache miss # More useful with e.g. npm. - name: Checkout submodules