Skip to content

Commit

Permalink
Upgrade to actions/checkout@v3
Browse files Browse the repository at this point in the history
No major change except it uses node16 instead of node12.

Unfortunately the linked PR actions/checkout#388
is still open, so no improvement possible for now.
  • Loading branch information
Seb35 committed Feb 1, 2023
1 parent 812a19b commit 5b9b71e
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -69,11 +69,11 @@ jobs:
mv composer.phar /usr/local/bin/composer
- name: Checkout Extension
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: ${{ env.EXT_NAME }}

# Setting actions/checkout@v2 path to env.MW_EXT_PATH fails with "Repository path '/var/www/html/extensions' is not under ..."
# Setting actions/checkout@v3 path to env.MW_EXT_PATH fails with "Repository path '/var/www/html/extensions' is not under ..."
# See also open PR https://github.com/actions/checkout/pull/388
- name: Move Extension
run: |
4 changes: 2 additions & 2 deletions .github/workflows/php-8.yml
Original file line number Diff line number Diff line change
@@ -69,11 +69,11 @@ jobs:
mv composer.phar /usr/local/bin/composer
- name: Checkout Extension
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: ${{ env.EXT_NAME }}

# Setting actions/checkout@v2 path to env.MW_EXT_PATH fails with "Repository path '/var/www/html/extensions' is not under ..."
# Setting actions/checkout@v3 path to env.MW_EXT_PATH fails with "Repository path '/var/www/html/extensions' is not under ..."
# See also open PR https://github.com/actions/checkout/pull/388
- name: Move Extension
run: |
2 changes: 1 addition & 1 deletion .github/workflows/tesa.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2

0 comments on commit 5b9b71e

Please sign in to comment.