Skip to content

Commit

Permalink
fix CICD issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam-D-Lewis committed Oct 15, 2024
1 parent baef3b4 commit d17336e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/run-precommit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
- name: Checkout repository 🔔
uses: actions/[email protected]

- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: Run terraform pre-commit ⚡️
uses: pre-commit/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion src/_nebari/provider/cicd/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def checkout_image_step():
def setup_python_step():
return GHA_job_step(
name="Set up Python",
uses="actions/setup-python@v4",
uses="actions/setup-python@v5",
with_={"python-version": GHA_job_steps_extras(LATEST_SUPPORTED_PYTHON_VERSION)},
)

Expand Down

0 comments on commit d17336e

Please sign in to comment.