Skip to content

Commit ac4429a

Browse files
committed
Revert build
1 parent 45a2db2 commit ac4429a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
run: docker exec -i oci bash -c "sqlplus -s system/root@XE <<< 'ALTER USER system DEFAULT TABLESPACE USERS;'"
6868

6969
- name: Checkout.
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v3
7171

7272
- name: Install PHP with extensions.
7373
uses: shivammathur/setup-php@v2
@@ -76,6 +76,7 @@ jobs:
7676
extensions: ${{ env.EXTENSIONS }}
7777
ini-values: date.timezone='UTC'
7878
coverage: pcov
79+
tools: composer:v2
7980

8081
- name: Update composer.
8182
run: composer self-update
@@ -92,6 +93,9 @@ jobs:
9293
FULL_BRANCH_NAME: ${{ env.FULL_BRANCH_NAME }}
9394
WORK_PACKAGE_URL: ${{ env.WORK_PACKAGE_URL }}
9495

96+
- name: Install dependencies with composer.
97+
run: composer update --no-interaction --no-progress --optimize-autoloader --ansi
98+
9599
- name: Run tests with phpunit with code coverage.
96100
run: vendor/bin/phpunit --coverage-clover=coverage.xml --colors=always --display-warnings --display-deprecations
97101
env:
@@ -103,7 +107,7 @@ jobs:
103107
YII_ORACLE_PASSWORD: root
104108

105109
- name: Upload coverage to Codecov.
106-
uses: codecov/codecov-action@v5
110+
uses: codecov/codecov-action@v3
107111
with:
108112
token: ${{ secrets.CODECOV_TOKEN }}
109113
files: ./coverage.xml

0 commit comments

Comments
 (0)