Skip to content

Commit

Permalink
Try to fix input check
Browse files Browse the repository at this point in the history
Signed-off-by: Douglas Camata <[email protected]>
  • Loading branch information
douglascamata committed Aug 30, 2023
1 parent 4891224 commit de63de1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: "Setup Docker on macOS using Colima, Lima-VM, and Homebrew."
inputs:
upgrade-qemu:
description: "Upgrade QEMU to the latest version. Add a lot of time to the job."
required: true
required: false
default: "false"
outputs:
colima-version:
Expand Down Expand Up @@ -54,7 +54,7 @@ runs:
ln -sfn "$(brew --prefix)/opt/docker-compose/bin/docker-compose" ~/.docker/cli-plugins/docker-compose
shell: bash
- name: Upgrade QEMU
if: ${{ inputs.upgrade-qemu }} != "false"
if: inputs.upgrade-qemu == "true"
env:
HOMEBREW_NO_AUTO_UPDATE: "1"
HOMEBREW_NO_INSTALL_UPGRADE: "1"
Expand Down

0 comments on commit de63de1

Please sign in to comment.