@@ -20,29 +20,29 @@ runs:
2020 using : composite
2121 steps :
2222 - name : Download base commit SHA artifact
23- if : ${{ github.event_name == 'pull_request' && inputs.php-version == '8.2 ' && inputs.dependencies == 'locked' }}
23+ if : ${{ github.event_name == 'pull_request' && inputs.php-version == '8.3 ' && inputs.dependencies == 'locked' }}
2424 uses : dawidd6/action-download-artifact@v11
2525 with :
2626 workflow : test-suite.yml
2727 name : codecov-base-commit-sha-${{ inputs.base-branch }}
2828 search_artifacts : true
2929
3030 - name : Read base commit SHA
31- if : ${{ github.event_name == 'pull_request' && inputs.php-version == '8.2 ' && inputs.dependencies == 'locked' }}
31+ if : ${{ github.event_name == 'pull_request' && inputs.php-version == '8.3 ' && inputs.dependencies == 'locked' }}
3232 shell : bash
3333 run : |
3434 ARTIFACT_CONTENT=$(cat codecov-base-commit-sha-${{ inputs.base-branch }}.txt)
3535 echo "codecov_base_commit_sha=$ARTIFACT_CONTENT" >> $GITHUB_ENV
3636
3737 - name : Upload test results (baseline)
38- if : ${{ github.event_name == 'push' && !cancelled() && inputs.php-version == '8.2 ' && inputs.dependencies == 'locked' }}
38+ if : ${{ github.event_name == 'push' && !cancelled() && inputs.php-version == '8.3 ' && inputs.dependencies == 'locked' }}
3939 uses : codecov/test-results-action@v1
4040 with :
4141 token : ${{ inputs.token }}
4242 directory : ./var/phpunit/logs
4343
4444 - name : Upload code coverage (baseline)
45- if : ${{ github.event_name == 'push' && !cancelled() && inputs.php-version == '8.2 ' && inputs.dependencies == 'locked' }}
45+ if : ${{ github.event_name == 'push' && !cancelled() && inputs.php-version == '8.3 ' && inputs.dependencies == 'locked' }}
4646 uses : codecov/codecov-action@v5
4747 with :
4848 token : ${{ inputs.token }}
6565 commit_parent : ${{ env.codecov_base_commit_sha }}
6666
6767 - name : Get branch name and commit SHA
68- if : ${{ github.event_name == 'push' && inputs.php-version == '8.2 ' && inputs.dependencies == 'locked' }}
68+ if : ${{ github.event_name == 'push' && inputs.php-version == '8.3 ' && inputs.dependencies == 'locked' }}
6969 shell : bash
7070 run : |
7171 branch_name=${GITHUB_REF#refs/heads/}
@@ -74,20 +74,20 @@ runs:
7474 echo "codecov_commit_sha=$commit_sha" >> $GITHUB_ENV
7575
7676 - name : Save commit SHA to file
77- if : ${{ github.event_name == 'push' && inputs.php-version == '8.2 ' && inputs.dependencies == 'locked' }}
77+ if : ${{ github.event_name == 'push' && inputs.php-version == '8.3 ' && inputs.dependencies == 'locked' }}
7878 shell : bash
7979 run : echo -n "${{ env.codecov_commit_sha }}" > codecov-base-commit-sha-${{ env.codecov_branch_name }}.txt
8080
8181 - name : Upload commit SHA as artifact
82- if : ${{ github.event_name == 'push' && inputs.php-version == '8.2 ' && inputs.dependencies == 'locked' }}
82+ if : ${{ github.event_name == 'push' && inputs.php-version == '8.3 ' && inputs.dependencies == 'locked' }}
8383 uses : actions/upload-artifact@v4
8484 with :
8585 name : codecov-base-commit-sha-${{ env.codecov_branch_name }}
8686 path : codecov-base-commit-sha-${{ env.codecov_branch_name }}.txt
8787 overwrite : true
8888
8989 - name : Add SHA to step summary
90- if : ${{ github.event_name == 'push' && inputs.php-version == '8.2 ' && inputs.dependencies == 'locked' }}
90+ if : ${{ github.event_name == 'push' && inputs.php-version == '8.3 ' && inputs.dependencies == 'locked' }}
9191 shell : bash
9292 run : |
9393 echo "Baseline commit SHA for Codecov: ${{ env.codecov_commit_sha }}" >> $GITHUB_STEP_SUMMARY
0 commit comments