mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-21 22:18:04 +01:00
Compare commits
5 commits
6191b1ca02
...
d258915f8e
Author | SHA1 | Date | |
---|---|---|---|
|
d258915f8e | ||
|
26277a9adb | ||
|
d0a49f9527 | ||
|
3ca395f4bd | ||
|
a042b3f8a4 |
7 changed files with 33 additions and 17 deletions
8
.github/workflows/codeql-analysis.yaml
vendored
8
.github/workflows/codeql-analysis.yaml
vendored
|
@ -38,13 +38,13 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
# Initializes the CodeQL tools for scanning.
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v2
|
uses: github/codeql-action/init@v3
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
languages: ${{ matrix.language }}
|
||||||
# If you wish to specify custom queries, you can do so here or in a config file.
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
||||||
|
@ -58,7 +58,7 @@ jobs:
|
||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
- name: Autobuild
|
- name: Autobuild
|
||||||
uses: github/codeql-action/autobuild@v2
|
uses: github/codeql-action/autobuild@v3
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
||||||
|
@ -71,6 +71,6 @@ jobs:
|
||||||
# ./location_of_script_within_repo/buildscript.sh
|
# ./location_of_script_within_repo/buildscript.sh
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
uses: github/codeql-action/analyze@v2
|
uses: github/codeql-action/analyze@v3
|
||||||
with:
|
with:
|
||||||
category: "/language:${{matrix.language}}"
|
category: "/language:${{matrix.language}}"
|
||||||
|
|
2
.github/workflows/test.yaml
vendored
2
.github/workflows/test.yaml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
cache: pip
|
cache: pip
|
||||||
|
|
2
.github/workflows/update-dependencies.yaml
vendored
2
.github/workflows/update-dependencies.yaml
vendored
|
@ -18,7 +18,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
ref: master
|
ref: master
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.12'
|
python-version: '3.12'
|
||||||
cache: pip
|
cache: pip
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
##############################################
|
##############################################
|
||||||
# write git info
|
# write git info
|
||||||
##############################################
|
##############################################
|
||||||
FROM alpine/git:2.40.1 AS git
|
FROM alpine/git:2.43.0 AS git
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY .git /app/.git/
|
COPY .git /app/.git/
|
||||||
|
@ -14,7 +14,7 @@ RUN date +'%Y-%m-%d %H:%M %Z' > /build-date
|
||||||
##############################################
|
##############################################
|
||||||
# Main image
|
# Main image
|
||||||
##############################################
|
##############################################
|
||||||
FROM python:3.12.0-slim-bullseye AS final
|
FROM python:3.12.1-slim-bullseye AS final
|
||||||
|
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
|
|
@ -83,7 +83,7 @@ sortedcontainers==2.4.0
|
||||||
# via trio
|
# via trio
|
||||||
sqlparse==0.4.4
|
sqlparse==0.4.4
|
||||||
# via django
|
# via django
|
||||||
trio==0.23.1
|
trio==0.23.2
|
||||||
# via
|
# via
|
||||||
# selenium
|
# selenium
|
||||||
# trio-websocket
|
# trio-websocket
|
||||||
|
|
|
@ -4,6 +4,10 @@
|
||||||
#
|
#
|
||||||
# pip-compile --allow-unsafe requirements-dev.in
|
# pip-compile --allow-unsafe requirements-dev.in
|
||||||
#
|
#
|
||||||
|
aiohttp==3.9.1
|
||||||
|
# via black
|
||||||
|
aiosignal==1.3.1
|
||||||
|
# via aiohttp
|
||||||
asgiref==3.7.2
|
asgiref==3.7.2
|
||||||
# via
|
# via
|
||||||
# -c constraints.txt
|
# -c constraints.txt
|
||||||
|
@ -12,10 +16,11 @@ asgiref==3.7.2
|
||||||
attrs==23.1.0
|
attrs==23.1.0
|
||||||
# via
|
# via
|
||||||
# -c constraints.txt
|
# -c constraints.txt
|
||||||
|
# aiohttp
|
||||||
# hypothesis
|
# hypothesis
|
||||||
# outcome
|
# outcome
|
||||||
# trio
|
# trio
|
||||||
black==23.11.0
|
black==23.12.0
|
||||||
# via -r requirements-dev.in
|
# via -r requirements-dev.in
|
||||||
blessed==1.20.0
|
blessed==1.20.0
|
||||||
# via curtsies
|
# via curtsies
|
||||||
|
@ -38,7 +43,7 @@ click==8.1.7
|
||||||
# via
|
# via
|
||||||
# black
|
# black
|
||||||
# pip-tools
|
# pip-tools
|
||||||
coverage[toml]==7.3.2
|
coverage[toml]==7.3.3
|
||||||
# via
|
# via
|
||||||
# coverage
|
# coverage
|
||||||
# pytest-cov
|
# pytest-cov
|
||||||
|
@ -48,7 +53,7 @@ cwcwidth==0.1.9
|
||||||
# via
|
# via
|
||||||
# bpython
|
# bpython
|
||||||
# curtsies
|
# curtsies
|
||||||
distlib==0.3.7
|
distlib==0.3.8
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
django==4.2.8
|
django==4.2.8
|
||||||
# via
|
# via
|
||||||
|
@ -62,13 +67,17 @@ django-debug-toolbar==4.2.0
|
||||||
# via -r requirements-dev.in
|
# via -r requirements-dev.in
|
||||||
filelock==3.13.1
|
filelock==3.13.1
|
||||||
# via virtualenv
|
# via virtualenv
|
||||||
|
frozenlist==1.4.1
|
||||||
|
# via
|
||||||
|
# aiohttp
|
||||||
|
# aiosignal
|
||||||
greenlet==3.0.2
|
greenlet==3.0.2
|
||||||
# via bpython
|
# via bpython
|
||||||
h11==0.14.0
|
h11==0.14.0
|
||||||
# via
|
# via
|
||||||
# -c constraints.txt
|
# -c constraints.txt
|
||||||
# wsproto
|
# wsproto
|
||||||
hypothesis==6.92.0
|
hypothesis==6.92.1
|
||||||
# via -r requirements-dev.in
|
# via -r requirements-dev.in
|
||||||
identify==2.5.33
|
identify==2.5.33
|
||||||
# via pre-commit
|
# via pre-commit
|
||||||
|
@ -77,6 +86,7 @@ idna==3.6
|
||||||
# -c constraints.txt
|
# -c constraints.txt
|
||||||
# requests
|
# requests
|
||||||
# trio
|
# trio
|
||||||
|
# yarl
|
||||||
iniconfig==2.0.0
|
iniconfig==2.0.0
|
||||||
# via pytest
|
# via pytest
|
||||||
invoke==2.2.0
|
invoke==2.2.0
|
||||||
|
@ -87,6 +97,10 @@ markupsafe==2.1.3
|
||||||
# via jinja2
|
# via jinja2
|
||||||
model-bakery==1.17.0
|
model-bakery==1.17.0
|
||||||
# via -r requirements-dev.in
|
# via -r requirements-dev.in
|
||||||
|
multidict==6.0.4
|
||||||
|
# via
|
||||||
|
# aiohttp
|
||||||
|
# yarl
|
||||||
mypy-extensions==1.0.0
|
mypy-extensions==1.0.0
|
||||||
# via black
|
# via black
|
||||||
nodeenv==1.8.0
|
nodeenv==1.8.0
|
||||||
|
@ -157,7 +171,7 @@ requests==2.31.0
|
||||||
# bpython
|
# bpython
|
||||||
# pytest-base-url
|
# pytest-base-url
|
||||||
# pytest-selenium
|
# pytest-selenium
|
||||||
ruff==0.1.7
|
ruff==0.1.8
|
||||||
# via -r requirements-dev.in
|
# via -r requirements-dev.in
|
||||||
selenium==4.9.1
|
selenium==4.9.1
|
||||||
# via
|
# via
|
||||||
|
@ -181,7 +195,7 @@ sqlparse==0.4.4
|
||||||
# django-debug-toolbar
|
# django-debug-toolbar
|
||||||
tenacity==8.2.3
|
tenacity==8.2.3
|
||||||
# via pytest-selenium
|
# via pytest-selenium
|
||||||
trio==0.23.1
|
trio==0.23.2
|
||||||
# via
|
# via
|
||||||
# -c constraints.txt
|
# -c constraints.txt
|
||||||
# selenium
|
# selenium
|
||||||
|
@ -205,9 +219,11 @@ wsproto==1.2.0
|
||||||
# via
|
# via
|
||||||
# -c constraints.txt
|
# -c constraints.txt
|
||||||
# trio-websocket
|
# trio-websocket
|
||||||
|
yarl==1.9.4
|
||||||
|
# via aiohttp
|
||||||
|
|
||||||
# The following packages are considered to be unsafe in a requirements file:
|
# The following packages are considered to be unsafe in a requirements file:
|
||||||
pip==23.3.1
|
pip==23.3.2
|
||||||
# via pip-tools
|
# via pip-tools
|
||||||
setuptools==69.0.2
|
setuptools==69.0.2
|
||||||
# via
|
# via
|
||||||
|
|
|
@ -83,7 +83,7 @@ sortedcontainers==2.4.0
|
||||||
# via trio
|
# via trio
|
||||||
sqlparse==0.4.4
|
sqlparse==0.4.4
|
||||||
# via django
|
# via django
|
||||||
trio==0.23.1
|
trio==0.23.2
|
||||||
# via
|
# via
|
||||||
# selenium
|
# selenium
|
||||||
# trio-websocket
|
# trio-websocket
|
||||||
|
|
Loading…
Reference in a new issue