SDL: Vita: Install bash in CI.

From e99b05d6c4bd0fde3e82c6b666ebae4f755c3386 Mon Sep 17 00:00:00 2001
From: Pierre Wendling <[EMAIL REDACTED]>
Date: Mon, 10 Oct 2022 22:36:21 -0400
Subject: [PATCH] Vita: Install bash in CI.

The wrapper `arm-vita-eabi-pkg-config` fails without it with the error:
`env: can't execute 'bash': No such file or directory`
---
 .github/workflows/vita.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/vita.yaml b/.github/workflows/vita.yaml
index 9b27370ba82b..e7bcd727cacb 100644
--- a/.github/workflows/vita.yaml
+++ b/.github/workflows/vita.yaml
@@ -16,7 +16,7 @@ jobs:
     - name: Install build requirements
       run: |
         apk update 
-        apk add cmake ninja pkgconf
+        apk add cmake ninja pkgconf bash
     - name: Configure CMake
       run: |
         cmake -S . -B build -G Ninja \