Skip to content

Commit 31797d8

Browse files
authored
Merge branch 'main' into aap-64560
2 parents 14b590f + d8acca8 commit 31797d8

File tree

3 files changed

+13
-20
lines changed

3 files changed

+13
-20
lines changed

.github/workflows/sonar-pr.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,14 @@ on:
2424
- CI
2525
types:
2626
- completed
27-
permissions: read-all
2827
jobs:
2928
sonar-pr-analysis:
3029
name: SonarCloud PR Analysis
3130
runs-on: ubuntu-latest
31+
permissions:
32+
contents: read
33+
actions: read
34+
pull-requests: read
3235
if: |
3336
github.repository == 'ansible/eda-server' &&
3437
github.event.workflow_run.conclusion == 'success' &&
@@ -38,7 +41,7 @@ jobs:
3841

3942
# Download coverage artifact from CI workflow
4043
- name: Download coverage artifact
41-
uses: dawidd6/action-download-artifact@0bd50d53a6d7fb5cb921e607957e9cc12b4ce392 #v2.27.0 sonar cannot use official Github action: actions/download-artifact
44+
uses: dawidd6/action-download-artifact@5c98f0b039f36ef966fdb7dfa9779262785ecb05 #v2.27.0 sonar cannot use official Github action: actions/download-artifact
4245
with:
4346
github_token: ${{ secrets.GITHUB_TOKEN }}
4447
workflow: CI
@@ -168,6 +171,9 @@ jobs:
168171
sonar-branch-analysis:
169172
name: SonarCloud Branch Analysis (Push)
170173
runs-on: ubuntu-latest
174+
permissions:
175+
contents: read
176+
actions: read
171177
if: |
172178
github.event.workflow_run.conclusion == 'success' &&
173179
github.event.workflow_run.event == 'push' &&
@@ -177,7 +183,7 @@ jobs:
177183

178184
# Download coverage artifact from CI workflow
179185
- name: Download coverage artifact
180-
uses: dawidd6/action-download-artifact@0bd50d53a6d7fb5cb921e607957e9cc12b4ce392 #v2.27.0 sonar cannot use official Github action: actions/download-artifact
186+
uses: dawidd6/action-download-artifact@5c98f0b039f36ef966fdb7dfa9779262785ecb05 #v2.27.0 sonar cannot use official Github action: actions/download-artifact
181187
with:
182188
github_token: ${{ secrets.GITHUB_TOKEN }}
183189
workflow: CI

poetry.lock

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

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ django-ansible-base = { git = "https://github.com/ansible/django-ansible-base.gi
5353
"feature-flags",
5454
] }
5555
jinja2 = ">=3.1.3,<3.2"
56-
django-split-settings = "^1.2.0"
5756
pexpect = "^4.9.0"
5857
ansible-runner = ">=2.4"
5958
python-gnupg = "^0.5.2"

0 commit comments

Comments
 (0)