From 7e2601b48ffc76b31c765ffe8643041a3c580766 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Germann?= Date: Fri, 1 Dec 2023 19:41:50 +0100 Subject: [PATCH] Update version-checks.yml --- .github/workflows/version-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version-checks.yml b/.github/workflows/version-checks.yml index 5e8d6f4..a9a7488 100644 --- a/.github/workflows/version-checks.yml +++ b/.github/workflows/version-checks.yml @@ -49,7 +49,7 @@ jobs: - name: Check for modified files id: git-check - run: echo ::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true") + run: echo "modified=$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")" >> $GITHUB_OUTPUT - name: Commit latest release version if: steps.git-check.outputs.modified == 'true'