Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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 backend/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ graphql-query = "~=1.4"
joserfc = "~=1.2"
packaging = "==23.2" # Must match version in Makefile.
psycopg2-binary = "~=2.9"
pydantic = "~=2.12"
pydantic = "==2.12.5"
PyGithub = "~=2.7"
pyjwt = "~=2.10"
pymemcache = "~=4.0"
requests = "~=2.32"
simplejson = "~=3.20"
sqlparse = "~=0.5"
urllib3 = "~=2.5"
urllib3 = "~=2.6"

[dev-packages]
autopep8 = "~=2.3"
Expand All @@ -37,13 +37,13 @@ isort = "~=6.0"
moto = {extras = ["awslambda", "ec2", "s3", "secretsmanager", "sqs"], version = "~=5.1"}
pylint = "~=4.0"
pyright = "~=1.1"
pytest = "~=8.4"
pytest = "~=9.0"
pytest-asyncio = "~=1.3"
pytest-cov = "~=7.0"
pytest-httpserver = "~=1.1"
pytest-subtests = "~=0.14"
pytest-xdist = "~=3.6"
python-dotenv = "~=1.1"
responses = "~=0.25"
ruff = "==0.14.0" # Must match version in VSCode extension: https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff
ruff = "==0.14.8" # Must match version in VSCode extension: https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff
xmltodict = "~=1.0"
360 changes: 180 additions & 180 deletions backend/Pipfile.lock

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions backend/engine/plugins/github_repo_health/lib/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/utilities/plugin_runner/toolbox/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM golang:1.24 AS builder
FROM golang:1.25 AS builder

WORKDIR /src/app

Expand Down
4 changes: 2 additions & 2 deletions backend/utilities/plugin_runner/toolbox/go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module github.com/warnermedia/artemis/backend/utilities/plugin_runner/toolbox

go 1.24.6
go 1.25.5

require (
github.com/fatih/color v1.18.0
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
golang.org/x/sys v0.34.0
golang.org/x/sys v0.39.0
)

require (
Expand Down
4 changes: 2 additions & 2 deletions backend/utilities/plugin_runner/toolbox/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 h1:KRzFb2m7YtdldCEkzs6KqmJw4nqEV
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2/go.mod h1:JXeL+ps8p7/KNMjDQk3TCwPpBy0wYklyWTfbkIzdIFU=
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA=
golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
golang.org/x/sys v0.39.0 h1:CvCKL8MeisomCi6qNZ+wbb0DN9E5AATixKsvNtMoMFk=
golang.org/x/sys v0.39.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
2 changes: 1 addition & 1 deletion orchestrator/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ pyright = "~=1.1"
pytest = "~=8.3"
pytest-cov = "~=7.0"
responses = "~=0.25.3"
ruff = "==0.14.0" # Must match version in VSCode extension: https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff
ruff = "==0.14.8" # Must match version in VSCode extension: https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff
370 changes: 185 additions & 185 deletions orchestrator/Pipfile.lock

Large diffs are not rendered by default.