Skip to content

Commit

Permalink
workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
VandlJ committed Nov 26, 2024
1 parent 9d783f4 commit 23e9432
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,24 @@ jobs:
with:
terraform_version: 1.5.6 # Replace with your required version

# Step 3: Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9

# Install Python dependencies
- name: Install Python and Dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install docker>=5.0.0
python3 -m pip show docker
- name: Display Python version and path
run: |
which python3
which docker
# Step 4: Install Ansible
- name: Install Ansible
run: |
Expand Down

0 comments on commit 23e9432

Please sign in to comment.