File tree Expand file tree Collapse file tree 3 files changed +16
-5
lines changed
Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,14 @@ updates:
77 interval : " daily"
88 commit-message :
99 prefix : build(deps)
10+ - package-ecosystem : " pip"
11+ directory : " /aws-cli"
12+ schedule :
13+ interval : " daily"
14+ cooldown :
15+ default-days : 7
16+ commit-message :
17+ prefix : build(deps)
1018 - package-ecosystem : " github-actions"
1119 directory : " /"
1220 schedule :
Original file line number Diff line number Diff line change @@ -47,12 +47,11 @@ RUN dnf upgrade -y \
4747RUN pip install --no-cache-dir --upgrade pipx==1.8.0
4848
4949# FIXME @TL remarshal requires python 3.10
50+ COPY requirements.txt /tmp/requirements.txt
51+
5052RUN pipx ensurepath --global \
51- && pipx install --global \
52- cfn-lint==1.40.4 \
53- cfn-policy-validator==0.0.36 \
54- checkov==3.2.490 \
55- yamlpath==3.8.2
53+ && xargs -a /tmp/requirements.txt -n 1 pipx install --global \
54+ && rm -f /tmp/requirements.txt
5655
5756# FIXME @TL workaround until Amazon Linux gets an yq package
5857RUN GOBIN=/usr/local/bin go install github.com/mikefarah/yq/
[email protected]
Original file line number Diff line number Diff line change 1+ cfn-lint == 1.40.4
2+ cfn-policy-validator == 0.0.36
3+ checkov == 3.2.490
4+ yamlpath == 3.8.2
You can’t perform that action at this time.
0 commit comments