Skip to content

Commit

Permalink
Merge pull request #40 from didoda/fix/upload-artifact-unique-name
Browse files Browse the repository at this point in the history
Upload artifact unique name
  • Loading branch information
didoda authored Jul 10, 2024
2 parents f1da4fc + cd9fab6 commit 1cc73ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/php-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: 'sudo apt-get install -y gettext'

- name: 'Checkout current revision'
uses: 'actions/checkout@v3'
uses: 'actions/checkout@v4'

- name: 'Composer config GH token if available'
run: 'if [ -n "$GH_TOKEN" ]; then composer config github-oauth.github.com ${GH_TOKEN}; fi'
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT

- name: 'Share Composer cache across runs'
uses: 'actions/cache@v3'
uses: 'actions/cache@v4'
with:
path: '${{ steps.cachedir.outputs.path }}'
key: "composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}"
Expand Down Expand Up @@ -111,5 +111,5 @@ jobs:
- name: 'Archive code coverage results'
uses: 'actions/upload-artifact@v4'
with:
name: 'PHP-${{ matrix.php-version }}-strategy-job-index-${{ strategy.job-index }}'
path: '${{ matrix.php-version }}-${{ strategy.job-index }}-clover.xml'
name: 'BEDITA-${{ inputs.bedita_version }}-PHP-${{ matrix.php-version }}-strategy-job-index-${{ strategy.job-index }}'
path: '${{ inputs.bedita_version }}-${{ matrix.php-version }}-${{ strategy.job-index }}-clover.xml'

0 comments on commit 1cc73ef

Please sign in to comment.