Upgrade checkout action to v4 in workflow #123
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: [push] | |
| jobs: | |
| mediawiki-extension-action-sqlite: | |
| runs-on: ubuntu-latest | |
| name: Dummy extension test (sqlite) | |
| steps: | |
| # check out the repository | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Test dummy extension | |
| uses: ./ # Uses an action in the root directory | |
| id: extension-test | |
| with: | |
| php: 7.4 | |
| mwbranch: REL1_39 | |
| extension: DummyExtension | |
| mediawiki-extension-action-mysql: | |
| runs-on: ubuntu-latest | |
| name: Dummy extension test (mysql) | |
| steps: | |
| # check out the repository | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Test dummy extension | |
| uses: ./ # Uses an action in the root directory | |
| id: extension-test | |
| with: | |
| php: 7.4 | |
| mwbranch: REL1_39 | |
| extension: DummyExtension | |
| use_mysql: true |