Skip to content

Commit acc511e

Browse files
committed
fix: update github actions to use new versions
1 parent 11bbd11 commit acc511e

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/alembic.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
run: |
3535
# for python3.11 (dear internet gods: we'll update to 3.13 or something in a year, i promise)
3636
sudo add-apt-repository ppa:deadsnakes/ppa
37-
sudo apt install python3.11 python3.11-venv
38-
python3.11 -m pip install --upgrade pip
39-
python3.11 -m venv venv
37+
sudo apt install python3.13 python3.13-venv
38+
python3.13 -m pip install --upgrade pip
39+
python3.13 -m venv venv
4040
source ./venv/bin/activate
4141
pip install .
4242

.github/workflows/pytest_unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
- uses: actions/setup-python@v4
1313
with:
14-
python-version: '3.11'
14+
python-version: '3.13'
1515

1616
- uses: actions/cache@v4
1717
id: cache

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ jobs:
77
- uses: actions/checkout@v4
88
- uses: chartboost/ruff-action@v1
99
with:
10-
version: 0.6.9
10+
version: 0.15.12

0 commit comments

Comments
 (0)