Skip to content

Commit

Permalink
Use composer install in all GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
stloyd committed Sep 16, 2023
1 parent 07654a5 commit 0476ec3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-linux-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

# If there's no Composer cache, install dependencies
- if: steps.cache-composer-deps.outputs.cache-hit != 'true'
run: composer update --no-dev --classmap-authoritative
run: composer install --no-dev --classmap-authoritative

# Cache downloaded source
- id: cache-download
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-macos-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

# If there's no Composer cache, install dependencies
- if: steps.cache-composer-deps.outputs.cache-hit != 'true'
run: composer update --no-dev --classmap-authoritative
run: composer install --no-dev --classmap-authoritative

# Cache downloaded source
- id: cache-download
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/download-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

# If there's no Composer cache, install dependencies
- if: steps.cache-composer-deps.outputs.cache-hit != 'true'
run: composer update --no-dev
run: composer install --no-dev

# If there's no dependencies cache, fetch sources, with or without debug
- if: steps.cache-download.outputs.cache-hit != 'true'
Expand Down

0 comments on commit 0476ec3

Please sign in to comment.