From 83cf6c179e8064c7ff45191454ce25251242debe Mon Sep 17 00:00:00 2001 From: "Benjamin M. Hughes" Date: Fri, 5 May 2023 10:27:35 +0100 Subject: [PATCH] Fix rspec gem install step --- .github/workflows/lint-unit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-unit.yml b/.github/workflows/lint-unit.yml index 2318cad..35da892 100644 --- a/.github/workflows/lint-unit.yml +++ b/.github/workflows/lint-unit.yml @@ -23,7 +23,7 @@ jobs: uses: actionshub/chef-install@2.0.4 - name: Install Gems run: chef gem install -N "${{ inputs.gems }}" - if: ${{ github.event.inputs.gems != '' }} + if: ${{ inputs.gems }} env: CHEF_LICENSE: accept-no-persist - name: Run RSpec