Skip to content

Commit 1efb01a

Browse files
committed
Update github action
1 parent e1f129f commit 1efb01a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/pythonapp.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- run: |
1313
git fetch --prune --unshallow
14-
- name: Set up Python 3.8
15-
uses: actions/setup-python@v1
14+
- name: Set up Python 3.11
15+
uses: actions/setup-python@v4
1616
with:
17-
python-version: 3.8
17+
python-version: 3.11
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ services:
3434
command: ./entrypoint.sh
3535
volumes:
3636
- .:/app
37-
- .db_data/db.sqlite3:/db.sqlite3
37+
- ./db.sqlite3:/db.sqlite3
3838
- static_volume:/usr/src/app/jobs/staticfiles
3939
ports:
4040
- "8000:8000"

0 commit comments

Comments
 (0)