Skip to content

Commit 14727bc

Browse files
authored
Merge pull request #93 from ansible/vulnerability/AAP-44647
AAP-44647 - Fix for CVE-2025-21605
2 parents 6c396f8 + 83cd8c0 commit 14727bc

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/check_dependencies.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@ jobs:
1717
python-version: '3.11'
1818
- name: Check Python version
1919
run: python --version
20-
- name: Install pip-tools
21-
run: pip install --user pip-tools
22-
- name: Check lip-compile version
23-
run: pip-compile --version
24-
- name: Generate requirements.txt file
25-
run: pip-compile -v --generate-hashes pyproject.toml
20+
- name: Install PDM
21+
run: pip install pdm
22+
- name: Export dependencies to requirements.txt
23+
run: pdm export --without-hashes --format requirements > requirements.txt
2624
- name: List requirements.txt file
2725
run: cat requirements.txt

Containerfile.redis

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ FROM quay.io/centos/centos:stream9
44
# Install necessary dependencies (gcc, make, etc.) for building Redis from source
55
RUN yum install -y gcc make wget tar gzip openssl openssl-devel && \
66
yum clean all && mkdir -p /etc/redis && \
7-
wget https://download.redis.io/releases/redis-7.2.7.tar.gz && \
8-
tar xzf redis-7.2.7.tar.gz -C /etc/redis --strip-components=1 && \
9-
rm redis-7.2.7.tar.gz && \
7+
wget https://download.redis.io/releases/redis-7.2.8.tar.gz && \
8+
tar xzf redis-7.2.8.tar.gz -C /etc/redis --strip-components=1 && \
9+
rm redis-7.2.8.tar.gz && \
1010
chmod 770 /var/run
1111

1212
# Change working directory to the extracted Redis source code directory

0 commit comments

Comments
 (0)