1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-08 16:17:37 +00:00

Make the Composer self-update succeed by using sudo

This commit is contained in:
Jordi Boggiano 2020-05-26 20:24:48 +02:00
parent 628730ba34
commit 42d760fb51
No known key found for this signature in database
GPG key ID: 7BBD42C429EC80BC

View file

@ -68,6 +68,11 @@ jobs:
steps:
- name: "Update to latest Composer snapshot"
if: "!startsWith(matrix.os, 'windows')"
run: "sudo composer self-update --snapshot"
- name: "Update to latest Composer snapshot on Windows"
if: "startsWith(matrix.os, 'windows')"
run: "composer self-update --snapshot"
- name: "Checkout"