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