Skip to content

Commit 6192bde

Browse files
committed
Specify shell in workflows
1 parent b6db01a commit 6192bde

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

.github/workflows/automerge.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ jobs:
1616
env:
1717
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
1818
if: env.RELEASE_TOKEN != ''
19+
shell: bash
1920
run: echo "${RELEASE_TOKEN}" | gh auth login --with-token
2021
- name: Enable auto-merge for Dependabot PRs
22+
shell: bash
2123
run: |
2224
# Checking the PR title is a poor substitute for the actual PR changes
2325
# but as long as this is used only with dependabot PRs,

.github/workflows/perlcritic.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Set REPOSITORY
19+
shell: bash
1920
run: echo "REPOSITORY=${GITHUB_REPOSITORY#*/}" >> "${GITHUB_ENV}"
2021
- name: Check out
2122
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2223
- name: Install PerlCritic
24+
shell: bash
2325
run: |
2426
sudo apt update -y
2527
sudo apt install libperl-critic-perl
2628
- name: Run PerlCritic
29+
shell: bash
2730
run: perlcritic ${REPOSITORY}

.github/workflows/yamllint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
- name: Check out
1919
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2020
- name: Install YAMLLint
21+
shell: bash
2122
run: sudo pip install yamllint
2223
- name: Run YAMLLint
24+
shell: bash
2325
run: "yamllint -d '{extends: relaxed, rules: {line-length: disable, trailing-spaces: disable}}' ."

0 commit comments

Comments
 (0)