Skip to content

Commit

Permalink
updated workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalkbrenner committed Jan 10, 2024
1 parent 133a59e commit ae4ea59
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,27 +33,27 @@ jobs:
coverage: pcov

- name: Checkout solarium
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Checkout solr 7.7
if: matrix.solr == 7
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: apache/lucene-solr
ref: branch_7_7
path: lucene-solr

- name: Checkout solr 8.11
if: matrix.solr == 8
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: apache/lucene-solr
ref: branch_8_11
path: lucene-solr

- name: Checkout solr 9.4
if: matrix.solr == 9
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: apache/solr
ref: branch_9_4
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
cd examples
php execute_all.php
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: PHP_${{ matrix.php }}-Solr_${{ matrix.solr }}_${{ matrix.mode }}
path: build/logs
Expand All @@ -101,10 +101,10 @@ jobs:

steps:
- name: Checkout solarium
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Download coverage reports from tests
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4

- name: List report files
run: |
Expand Down

0 comments on commit ae4ea59

Please sign in to comment.