From 9beaa556831464ff45665fec11b0987bfa3df4b6 Mon Sep 17 00:00:00 2001 From: Ella Bronson <111298136+ebronson68@users.noreply.github.com> Date: Tue, 16 Jan 2024 15:23:46 -0600 Subject: [PATCH] [DEVOPS-XXX] Set INSTALL_NODE workflow input to string type (#104) ## Description - Set INSTALL_NODE workflow input to string type ## Related Links - Jira Issue: DEVOPS-XXX --- .github/workflows/ruby-ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ruby-ci.yaml b/.github/workflows/ruby-ci.yaml index 30f207bf..9a598766 100644 --- a/.github/workflows/ruby-ci.yaml +++ b/.github/workflows/ruby-ci.yaml @@ -13,9 +13,9 @@ on: description: "Apt packages to install" INSTALL_NODE: required: false - type: boolean + type: string description: "Whether to install Node.js or not" - default: false + default: 'false' NODE_VERSION: required: false type: string @@ -45,7 +45,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v3 - if: ${{ inputs.INSTALL_NODE == true }} + if: ${{ inputs.INSTALL_NODE == 'true' }} with: node-version: ${{ inputs.NODE_VERSION }}