Skip to content

Commit f2ecd94

Browse files
committed
Update docs for Pipeline module
1 parent 0396f61 commit f2ecd94

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/pages/modules/pipeline/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,16 @@ To install external Composer dependencies, add the following steps *before* NPM/
111111
#
112112
# Install external Composer dependencies
113113
#
114+
# - Composer must be installed directly, not in a container, to prevent issue with permissions.
114115
# - Configure workspace as safe for Git, to solve: https://github.com/composer/composer/issues/12221
115-
# - Composer install will fail if there are other modules in the `vendor` folder. It must run before NPM/Bun install.
116+
# - Composer install will fail if there are other modules in the `vendor` folder. It must run before NPM install.
116117
#
117118
- name: Set up PHP
118119
uses: shivammathur/setup-php@v2
119120
with:
120121
php-version: '8.2'
121122
tools: phpunit-polyfills
122123

123-
# Configure workspace as safe for Git, to solve: https://github.com/composer/composer/issues/12221
124124
- name: Git safe.directory
125125
run: |
126126
git config --global --add safe.directory "$GITHUB_WORKSPACE"

0 commit comments

Comments
 (0)