Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
efd4eb3
Bump actions/checkout from 4 to 6
dependabot[bot] Mar 26, 2026
db1fc0e
Bump python from 3.13-slim to 3.14-slim
dependabot[bot] Mar 26, 2026
abb500e
Bump werkzeug from 3.1.6 to 3.1.7
dependabot[bot] Mar 26, 2026
6fbc3a5
Bump requests from 2.32.5 to 2.33.0
dependabot[bot] Mar 26, 2026
c9d341a
Bump github/codeql-action from 3 to 4
dependabot[bot] Mar 26, 2026
7e83623
Bump gunicorn from 25.1.0 to 25.2.0
dependabot[bot] Mar 26, 2026
efbd8d4
Merge pull request #86 from GitTimeraider/dependabot/pip/develop/requ…
GitTimeraider Mar 29, 2026
cf21d96
Merge pull request #87 from GitTimeraider/dependabot/github_actions/d…
GitTimeraider Mar 29, 2026
a573dd2
Merge pull request #85 from GitTimeraider/dependabot/pip/develop/werk…
GitTimeraider Mar 29, 2026
91b4695
Merge pull request #83 from GitTimeraider/dependabot/github_actions/d…
GitTimeraider Mar 29, 2026
260051a
Merge pull request #84 from GitTimeraider/dependabot/docker/develop/p…
GitTimeraider Mar 29, 2026
b64ec3f
Merge pull request #88 from GitTimeraider/dependabot/pip/develop/guni…
GitTimeraider Mar 29, 2026
9bc618d
Change pull request branch to 'develop'
GitTimeraider Mar 29, 2026
d1e8f2d
Bump requests from 2.33.0 to 2.33.1
dependabot[bot] Apr 2, 2026
f16f473
Bump gunicorn from 25.2.0 to 25.3.0
dependabot[bot] Apr 2, 2026
47f4957
Merge pull request #91 from GitTimeraider/dependabot/pip/develop/guni…
GitTimeraider Apr 7, 2026
a5c2e1a
Merge pull request #90 from GitTimeraider/dependabot/pip/develop/requ…
GitTimeraider Apr 7, 2026
3ba8303
Bump werkzeug from 3.1.7 to 3.1.8
dependabot[bot] Apr 9, 2026
883d11c
Bump sqlalchemy from 2.0.48 to 2.0.49
dependabot[bot] Apr 9, 2026
d7802f2
Merge pull request #92 from GitTimeraider/dependabot/pip/develop/werk…
GitTimeraider Apr 10, 2026
901f8fe
Merge pull request #93 from GitTimeraider/dependabot/pip/develop/sqla…
GitTimeraider Apr 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: python

- name: Autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@v4

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:python"
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ main, develop ]
tags: [ 'v*' ]
pull_request:
branches: [ main ]
branches: [ develop ]
Copy link

Copilot AI Apr 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing the docker-build workflow to run on pull requests targeting only develop means PRs opened against main will no longer get a Docker build (and may fail required-status checks if this workflow is expected on main). If this repo still accepts PRs to main, consider including main here (or explain/migrate branch protection accordingly).

Suggested change
branches: [ develop ]
branches: [ main, develop ]

Copilot uses AI. Check for mistakes.

env:
REGISTRY: ghcr.io
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-slim
FROM python:3.14-slim

# Set environment variables to prevent interactive prompts and optimize Python
ENV DEBIAN_FRONTEND=noninteractive \
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
flask==3.1.3
flask-login==0.6.3
flask-wtf==1.2.2
werkzeug==3.1.6
werkzeug==3.1.8
bcrypt==5.0.0
APScheduler==3.11.2
PyGithub==2.9.0
gitpython==3.1.46
python-dotenv==1.2.2
requests==2.32.5
sqlalchemy==2.0.48
requests==2.33.1
sqlalchemy==2.0.49
flask-sqlalchemy==3.1.1
wtforms==3.2.1
gunicorn==25.1.0
gunicorn==25.3.0
pytz==2026.1.post1

Loading