Skip to content

Commit 64ae845

Browse files
author
Gonzalo Diaz
committed
[BUGFIX] sonarcloud: Omitting "--only-binary :all:" can lead to the execution of setup scripts. Make sure it is safe here.
1 parent 43edc4f commit 64ae845

3 files changed

Lines changed: 131 additions & 1 deletion

File tree

.github/workflows/yamllint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ jobs:
1818
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1919

2020
- name: Install yamllint
21-
run: pip install yamllint
21+
run: >
22+
python3 -m pipenv install --system --deploy yamllint
2223
2324
- name: Lint YAML files
2425
run: >

Pipfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
yamllint = "*"
8+
9+
[dev-packages]
10+
11+
[requires]
12+
python_version = "3.14"

Pipfile.lock

Lines changed: 117 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)