Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade virtualenv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade virtualenv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade virtualenv
Expand Down
2 changes: 1 addition & 1 deletion build/operator.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9
FROM python:3.14

COPY k8spin_operator/requirements.txt /src/requirements.txt
RUN pip install -r /src/requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion build/webhook.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9
FROM python:3.14

COPY k8spin_webhook/requirements.txt /src/requirements.txt
RUN pip install -r /src/requirements.txt
Expand Down