Skip to content

Commit 40a74ec

Browse files
authored
Merge branch 'main' into fix-kuberhealthy-check-namespaces
2 parents 1454a90 + ccb8b7e commit 40a74ec

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/run-precommit.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,17 @@ jobs:
1818
- name: Checkout repository 🔔
1919
uses: actions/[email protected]
2020

21+
- name: Setup python
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: '3.x'
25+
26+
- name: Setup terraform
27+
uses: hashicorp/setup-terraform@v3
28+
with:
29+
terraform_version: "1.5.7"
30+
31+
2132
- name: Run terraform pre-commit ⚡️
2233
uses: pre-commit/[email protected]
2334
with:

src/_nebari/provider/cicd/github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def checkout_image_step():
196196
def setup_python_step():
197197
return GHA_job_step(
198198
name="Set up Python",
199-
uses="actions/setup-python@v4",
199+
uses="actions/setup-python@v5",
200200
with_={"python-version": GHA_job_steps_extras(LATEST_SUPPORTED_PYTHON_VERSION)},
201201
)
202202

0 commit comments

Comments
 (0)