Skip to content

Commit 8b60bbb

Browse files
committed
ci: shell declaration in composite actions
1 parent 6656ab7 commit 8b60bbb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/actions/setup-python-pip-tox/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ runs:
1111
- uses: actions/setup-python@v6
1212
with:
1313
python-version: ${{ inputs.python }}
14-
- run: |
14+
- name: upgrade pip and install tox
15+
shell: bash
16+
run: |
1517
python -m pip -q install --upgrade pip "setuptools==65.6.2"
1618
pip -q install "tox<4" tox-gh-actions

.github/actions/setup-rust-poetry/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ runs:
1515
restore-keys: |
1616
${{ runner.os }}-poetry-
1717
- name: install Rust and Poetry
18+
shell: bash
1819
run : |
1920
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal
2021
source "$HOME/.cargo/env"

0 commit comments

Comments
 (0)