Skip to content

Commit a444772

Browse files
authored
Merge pull request #115 from alexjrk/fix/fix-unit-tests-runners
Fix unit tests runner
2 parents 1bc6bb0 + a663c02 commit a444772

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
unit-tests:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212

1313
strategy:
1414
matrix:
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v3
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

examples/intro/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# vim: set filetype=Dockerfile:
2-
FROM python:3.11-slim-buster
2+
FROM python:3.11-slim-bookworm
33

44
ENV POETRY_HOME="/opt/poetry" \
55
POETRY_VIRTUALENVS_CREATE=false \

0 commit comments

Comments
 (0)