Compare commits

..

No commits in common. "d258915f8e3a087c1b746bf3790b146d272f7207" and "6191b1ca028516d06ead17e5371318c96de7d2da" have entirely different histories.

7 changed files with 17 additions and 33 deletions

View file

@ -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@v5 uses: actions/setup-python@v4
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@v3 uses: github/codeql-action/init@v2
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@v3 uses: github/codeql-action/autobuild@v2
# 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@v3 uses: github/codeql-action/analyze@v2
with: with:
category: "/language:${{matrix.language}}" category: "/language:${{matrix.language}}"

View file

@ -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@v5 uses: actions/setup-python@v4
with: with:
python-version: '3.12' python-version: '3.12'
cache: pip cache: pip

View file

@ -18,7 +18,7 @@ jobs:
with: with:
ref: master ref: master
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5 uses: actions/setup-python@v4
with: with:
python-version: '3.12' python-version: '3.12'
cache: pip cache: pip

View file

@ -1,7 +1,7 @@
############################################## ##############################################
# write git info # write git info
############################################## ##############################################
FROM alpine/git:2.43.0 AS git FROM alpine/git:2.40.1 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.1-slim-bullseye AS final FROM python:3.12.0-slim-bullseye AS final
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive

View file

@ -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.2 trio==0.23.1
# via # via
# selenium # selenium
# trio-websocket # trio-websocket

View file

@ -4,10 +4,6 @@
# #
# 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
@ -16,11 +12,10 @@ 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.12.0 black==23.11.0
# via -r requirements-dev.in # via -r requirements-dev.in
blessed==1.20.0 blessed==1.20.0
# via curtsies # via curtsies
@ -43,7 +38,7 @@ click==8.1.7
# via # via
# black # black
# pip-tools # pip-tools
coverage[toml]==7.3.3 coverage[toml]==7.3.2
# via # via
# coverage # coverage
# pytest-cov # pytest-cov
@ -53,7 +48,7 @@ cwcwidth==0.1.9
# via # via
# bpython # bpython
# curtsies # curtsies
distlib==0.3.8 distlib==0.3.7
# via virtualenv # via virtualenv
django==4.2.8 django==4.2.8
# via # via
@ -67,17 +62,13 @@ 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.1 hypothesis==6.92.0
# via -r requirements-dev.in # via -r requirements-dev.in
identify==2.5.33 identify==2.5.33
# via pre-commit # via pre-commit
@ -86,7 +77,6 @@ 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
@ -97,10 +87,6 @@ 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
@ -171,7 +157,7 @@ requests==2.31.0
# bpython # bpython
# pytest-base-url # pytest-base-url
# pytest-selenium # pytest-selenium
ruff==0.1.8 ruff==0.1.7
# via -r requirements-dev.in # via -r requirements-dev.in
selenium==4.9.1 selenium==4.9.1
# via # via
@ -195,7 +181,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.2 trio==0.23.1
# via # via
# -c constraints.txt # -c constraints.txt
# selenium # selenium
@ -219,11 +205,9 @@ 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.2 pip==23.3.1
# via pip-tools # via pip-tools
setuptools==69.0.2 setuptools==69.0.2
# via # via

View file

@ -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.2 trio==0.23.1
# via # via
# selenium # selenium
# trio-websocket # trio-websocket