Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
run: sudo apt-get update && sudo apt-get install build-essential
shell: bash

- name: Install Python 3.8
uses: actions/setup-python@v2
- name: Install Python 3.12
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.12'

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Ensure clean
run: make clean
Expand All @@ -42,7 +42,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: TCPD docker check
uses: ./.github/workflows/
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:20.04
FROM ubuntu:24.04

# Install necessary packages and ensure python means python3
RUN apt-get update && \
Expand Down