Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ on:
pull_request:
jobs:
main:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.7"
python-version: "3.12"
- name: sync symlinks
run: |
# Ensure symlinks are synced
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7-slim
FROM python:3.12-slim

RUN apt-get update \
&& apt-get install -y --no-install-recommends build-essential gosu \
Expand Down
2 changes: 1 addition & 1 deletion api-server/bin/test-utils/docker-run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ docker run \
-v $(pwd):/work \
-w /work \
-e TARGET="${TARGET:-test}" \
python:3.7 \
python:3.12 \
./api-server/bin/test-utils/run-tests
Loading