File tree Expand file tree Collapse file tree 1 file changed +15
-12
lines changed Expand file tree Collapse file tree 1 file changed +15
-12
lines changed Original file line number Diff line number Diff line change 99 test-deployer :
1010 runs-on : self-hosted
1111 container :
12- # image: ubuntu:latest
13- # options: --privileged
1412 image : ghcr.io/catthehacker/ubuntu:act-latest
1513 env :
1614 ANSIBLE_HOST_KEY_CHECKING : " False"
@@ -23,19 +21,24 @@ jobs:
2321 fail-fast : false
2422
2523 steps :
26- - name : Install miscellaneous dependencies
27- run : apt update && apt install -y jq
28-
29- - name : Install Python
30- run : |
31- apt install -y python3
32- wget https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py && rm get-pip.py
33- ln -s /usr/bin/python3 /usr/bin/python || true
34- ln -s /usr/bin/pip3 /usr/bin/pip || true
35-
3624 - name : Checkout repository
3725 uses : actions/checkout@v4
3826
27+ - name : Install jq
28+ run : apt update && apt install -y jq
29+
30+ # - name: Install Python
31+ # run: |
32+ # apt install -y python3
33+ # wget https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py && rm get-pip.py
34+ # ln -s /usr/bin/python3 /usr/bin/python || true
35+ # ln -s /usr/bin/pip3 /usr/bin/pip || true
36+
37+ - name : Setup Python
38+ 39+ with :
40+ python-version : 3.12
41+
3942 - name : Install OpenTofu
4043 uses : opentofu/setup-opentofu@v1
4144 with :
You can’t perform that action at this time.
0 commit comments