Skip to content

Commit 2e035ca

Browse files
Fix action
1 parent a517ced commit 2e035ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ runs:
7777
- name: Cache Cargo registry + index
7878
if: ${{ inputs.cargo-cache == 'true' || env.NEEDS_RUST == 'true' }}
7979
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
80-
name: Cache Cargo registry + index
8180
with:
8281
path: |
8382
~/.cargo/bin/
@@ -90,6 +89,7 @@ runs:
9089
9190
- name: Install mold
9291
if: ${{ startsWith(matrix.os, 'ubuntu') && inputs.mold == 'true' }}
92+
shell: bash
9393
run: |
9494
# Install mold, because the system linker wastes a bunch of time.
9595
#
@@ -131,6 +131,7 @@ runs:
131131
132132
133133
- name: Run prepare.sh
134+
shell: bash
134135
run: |
135136
modules=()
136137
[[ "${{ inputs.rustup == 'true' || env.NEEDS_RUST == 'true' }}" == "true" ]] && modules+=("rustup")
@@ -145,4 +146,3 @@ runs:
145146
[[ "${{ inputs.datadog-ci }}" == "true" ]] && modules+=("datadog-ci")
146147
MODULES=$(IFS=,; echo "${modules[*]}")
147148
./script/environment/prepare.sh --modules "${MODULES}"
148-
shell: bash

0 commit comments

Comments
 (0)