Skip to content

Commit 336a3f9

Browse files
committed
chore: show ansible version installed by mise instead of bundled with a runtime image
Part of #1764
1 parent 366e831 commit 336a3f9

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/provision-by-terraform.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,18 @@ jobs:
6666
MISE_DISABLE_TOOLS: java,maven,python
6767
run: mise install
6868

69-
- name: Show tools versions
69+
- name: Show Terraform version
7070
# NOTE: a working directory is important here and must be set to the dir where mise is configured
7171
working-directory: infra/terraform
7272
env:
7373
# https://developer.hashicorp.com/terraform/cli/commands#upgrade-and-security-bulletin-checks
7474
CHECKPOINT_DISABLE: true
75-
run: |
76-
terraform -version
77-
ansible-vault --version
75+
run: terraform -version
76+
77+
- name: Show Ansible version
78+
# NOTE: a working directory is important here and must be set to the dir where mise is configured
79+
working-directory: infra/ansible
80+
run: ansible-vault --version
7881

7982
- name: Decrypt terraform files
8083
working-directory: infra/terraform

0 commit comments

Comments
 (0)