.github/workflows: use bash as the default shell

GitHub Actions adds pipefail only when we use bash.
https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#defaultsrunshell

Closes: https://github.com/gentoo/guru/pull/303
Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono 2025-03-16 02:53:57 +09:00
parent 4d769f1bcb
commit 19f093de06
No known key found for this signature in database
GPG Key ID: 91CA2604719DDA61

View File

@ -8,6 +8,10 @@ on:
pull_request:
branches: [dev]
defaults:
run:
shell: bash
jobs:
bugzilla:
runs-on: ubuntu-latest