Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ LABEL org.opencontainers.image.source https://github.com/github-community-projec
WORKDIR /action/workspace
COPY requirements.txt *.py /action/workspace/

RUN python3 -m pip install --no-cache-dir -r requirements.txt \
RUN python3 -m pip install --no-cache-dir --no-deps -r requirements.txt \
&& apt-get -y update \
&& apt-get -y install --no-install-recommends git=1:2.47.3-0+deb13u1 \
&& rm -rf /var/lib/apt/lists/*
Expand Down
28 changes: 27 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,28 @@
github3.py==4.0.1
certifi==2026.2.25
# via requests
cffi==2.0.0
# via cryptography
charset-normalizer==3.4.4
# via requests
cryptography==46.0.5
# via pyjwt
github3-py==4.0.1
# via -r requirements.txt
idna==3.11
# via requests
pycparser==3.0
# via cffi
pyjwt==2.11.0
# via github3-py
python-dateutil==2.9.0.post0
# via github3-py
python-dotenv==1.2.1
# via -r requirements.txt
requests==2.32.5
# via github3-py
six==1.17.0
# via python-dateutil
uritemplate==4.2.0
# via github3-py
urllib3==2.6.3
# via requests
Loading