Skip to content

Commit cac8d6c

Browse files
committed
minor #261 Don't let Composer advisory blocking break CI (Kocal)
This PR was merged into the 2.x branch. Discussion ---------- Don't let Composer advisory blocking break CI | Q | A | ------------- | --- | Bug fix? | no | New feature? | no <!-- please update CHANGELOG.md file --> | Issues | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT Disabling Composer security advisories check in CI, see https://github.com/symfony/webpack-encore-bundle/actions/runs/28081086683/job/83135972448 Commits ------- cb3dd07 Don't let Composer advisory blocking break CI
2 parents 9edab87 + cb3dd07 commit cac8d6c

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ jobs:
5858
- name: Configure Composer minimum stability
5959
run: composer config minimum-stability ${{ matrix.minimum-stability || 'stable' }} --ansi
6060

61+
# Symfony deps may temporarily have no advisory-free release (unpatched CVE upstream);
62+
# don't let Composer's advisory blocking turn the bundle's CI red in the meantime.
63+
- name: Disable Composer security advisories blocking
64+
run: composer config --no-plugins policy.advisories.block false
65+
6166
- name: "Composer install"
6267
uses: ramsey/composer-install@26d8a556604053a9612623447203a691f406fbe6
6368
with:

0 commit comments

Comments
 (0)