fix: Add apt update before install python
All checks were successful
Build Docker / BuildImage (push) Successful in 47s
Check Code Quality / RuffCheck (push) Successful in 58s

This commit is contained in:
2025-10-30 20:39:27 +11:00
parent b9753617ad
commit 0c490625a9

View File

@@ -9,7 +9,9 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python - name: Set up Python
run: apt-get install python3-pip run: |
apt update
apt install -y python3 python3-pip
- name: Install Ruff - name: Install Ruff
run: pip install ruff run: pip install ruff
- name: Run Ruff - name: Run Ruff