From b43961b55b3463df81418f6d07e72cab0eed4da9 Mon Sep 17 00:00:00 2001 From: Morten Brekkevold Date: Wed, 18 Dec 2024 13:07:53 +0100 Subject: [PATCH] Fix quoting issues in workflow --- .github/workflows/check-for-updates.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-for-updates.yml b/.github/workflows/check-for-updates.yml index c46b021..d403b00 100644 --- a/.github/workflows/check-for-updates.yml +++ b/.github/workflows/check-for-updates.yml @@ -41,10 +41,10 @@ jobs: - name: Verify update available id: verify run: | - if dpkg --compare-versions ${{ steps.package.outputs.version }} gt ${{ steps.appliance.outputs.version }}; then + if dpkg --compare-versions "${{ steps.package.outputs.version }}" gt "${{ steps.appliance.outputs.version }}"; then echo "update_available=true" >> $GITHUB_OUTPUT else - echo "update_available=false >> $GITHUB_OUTPUT + echo "update_available=false" >> $GITHUB_OUTPUT fi - name: Trigger Build Workflow