File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- #! /usr/ bin/env bash
1
+ #! /bin/sh
2
2
3
- set -euxo pipefail
3
+ # We can't convert this script to bash as GHA doesn't have bash installed
4
+ #
5
+ # The current script doesn't use a piped command so the "benefit" of using
6
+ # pipefail is not there over the hassle of maintaining another container.
7
+ set -eux
4
8
5
9
echo " Set plugin config for version detection"
6
10
phpcs --config-set installed_paths /app/vendor/phpcompatibility/php-compatibility
Original file line number Diff line number Diff line change 51
51
- run : apk add git
52
52
- uses : actions/checkout@v4
53
53
- name : Various fixes to this image
54
- run : |
55
- find / -name fix_pipelinecomponents_image.sh
56
- find / -name bash
57
- /usr/bin/env bash --version
58
- .github/jobs/fix_pipelinecomponents_image.sh
54
+ run : .github/jobs/fix_pipelinecomponents_image.sh
59
55
- name : Detect compatibility with supported PHP version
60
56
run : >
61
57
phpcs -s -p --colors
You can’t perform that action at this time.
0 commit comments