Skip to content

Commit

Permalink
Fix action.yml syntax (#15430)
Browse files Browse the repository at this point in the history
# Objective

Fixes #15429 

## Solution

Fix type of default value

## Testing

We'll see if the CI still works I guess.

## Showcase


![image](https://github.com/user-attachments/assets/aeb376fe-1c88-4b1c-8c91-fd8f142c2378)
  • Loading branch information
BenjaminBrienen authored Sep 26, 2024
1 parent eb92ba8 commit 9a0bfc6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/install-linux-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ inputs:
alsa:
description: Install alsa (libasound2-dev)
required: false
default: true
default: "true"
udev:
description: Install udev (libudev-dev)
required: false
default: true
default: "true"
wayland:
description: Install Wayland (libwayland-dev)
required: false
default: false
default: "false"
xkb:
description: Install xkb (libxkbcommon-dev)
required: false
default: false
default: "false"
runs:
using: composite
steps:
Expand Down

0 comments on commit 9a0bfc6

Please sign in to comment.