Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use GH Actions v4 #771

Merged
merged 1 commit into from
Feb 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Cache MediaWiki
id: cache-mediawiki
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
mediawiki
Expand All @@ -54,12 +54,12 @@ jobs:
key: mw_${{ matrix.mw }}-php${{ matrix.php }}-v21

- name: Cache Composer cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.composer/cache
key: composer-php${{ matrix.php }}

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: EarlyCopy

Expand All @@ -68,7 +68,7 @@ jobs:
working-directory: ~
run: bash EarlyCopy/.github/workflows/installMediaWiki.sh ${{ matrix.mw }} Maps

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: mediawiki/extensions/Maps

Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

- name: Cache MediaWiki
id: cache-mediawiki
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
mediawiki
Expand All @@ -170,12 +170,12 @@ jobs:
key: mw_phpstan

- name: Cache Composer cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.composer/cache
key: composer_static_analysis

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: EarlyCopy

Expand All @@ -184,7 +184,7 @@ jobs:
working-directory: ~
run: bash EarlyCopy/.github/workflows/installMediaWiki.sh REL1_39 Maps

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: mediawiki/extensions/Maps

Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:

- name: Cache MediaWiki
id: cache-mediawiki
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
mediawiki
Expand All @@ -230,12 +230,12 @@ jobs:
key: mw_static_analysis

- name: Cache Composer cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.composer/cache
key: composer_static_analysis

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: EarlyCopy

Expand All @@ -244,7 +244,7 @@ jobs:
working-directory: ~
run: bash EarlyCopy/.github/workflows/installMediaWiki.sh REL1_39 Maps

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
path: mediawiki/extensions/Maps

Expand Down