From 8c8c8b2da19a786d9f1e73e6f4f4894e362e782d Mon Sep 17 00:00:00 2001 From: fujiwara Date: Wed, 17 Jul 2024 11:43:31 +0900 Subject: [PATCH] fix log message format --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 5dd7ba8d..63705f30 100644 --- a/action.yml +++ b/action.yml @@ -10,11 +10,11 @@ runs: working-directory: /tmp run: | set -e - echo "::warning ecspresso@v1 is deprecated. Please use ecspresso@v2 action." + echo "::warning::ecspresso@v1 is deprecated. Please use ecspresso@v2 action." VERSION="${{ inputs.version }}" if [ "${VERSION}" = "latest" ]; then VERSION=v1.7.15 - echo "::notice Using fixed latest v1 version: ${VERSION}" + echo "::notice::Using fixed latest v1 version: ${VERSION}" fi DOWNLOAD_URL=https://github.com/kayac/ecspresso/releases/download/${VERSION}/ecspresso_${VERSION:1}_linux_amd64.tar.gz cd /tmp