diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 5d2ab0ab..dfaa0eb2 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -1,6 +1,5 @@ name: 'CI' - on: # Build any PRs and main branch changes workflow_dispatch: # Allows to run the workflow manually from the Actions tab pull_request: diff --git a/.github/workflows/reusable-CI-workflow.yml b/.github/workflows/reusable-CI-workflow.yml index cbc7d372..ff44870d 100644 --- a/.github/workflows/reusable-CI-workflow.yml +++ b/.github/workflows/reusable-CI-workflow.yml @@ -66,7 +66,7 @@ jobs: - name: Create "unit tests" reports directory if: ${{ env.COVERAGE_TYPE == 'xdebug' }} id: unit-tests-coverage-group - uses: yoanm/temp-reports-group-workspace/gha-create@improve + uses: yoanm/temp-reports-group-workspace/gha-create@v0 with: name: unit-tests format: clover @@ -79,7 +79,7 @@ jobs: - name: Create "functional tests" coverage group if: ${{ env.COVERAGE_TYPE == 'xdebug' }} id: functional-tests-coverage-group - uses: yoanm/temp-reports-group-workspace/gha-create@improve + uses: yoanm/temp-reports-group-workspace/gha-create@v0 with: name: functional-tests format: clover diff --git a/.github/workflows/reusable-coverage-upload-workflow.yml b/.github/workflows/reusable-coverage-upload-workflow.yml index 8476349d..f2df9316 100644 --- a/.github/workflows/reusable-coverage-upload-workflow.yml +++ b/.github/workflows/reusable-coverage-upload-workflow.yml @@ -17,12 +17,12 @@ jobs: checks: write # For the check run creation ! steps: - name: 'Check run ○' - uses: yoanm/temp-reports-group-workspace/gha-attach-check-run-to-triggering-workflow@improve + uses: yoanm/temp-reports-group-workspace/gha-attach-check-run-to-triggering-workflow@v0 with: name: 'Fetch coverage info' fails-on-triggering-workflow-failure: true - - uses: yoanm/temp-reports-group-workspace/gha-fetch-workflow-metadata@improve + - uses: yoanm/temp-reports-group-workspace/gha-fetch-workflow-metadata@v0 id: fetch-workflow-metadata outputs: @@ -32,7 +32,7 @@ jobs: codacy-uploader: name: Codacy needs: [fetch-info] - uses: yoanm/temp-reports-group-workspace/.github/workflows/codacy-upload-from-artifacts.yml@improve + uses: yoanm/temp-reports-group-workspace/.github/workflows/codacy-upload-from-artifacts.yml@v0 permissions: contents: read checks: write # For the check run creation ! @@ -41,7 +41,6 @@ jobs: with: artifacts-pattern: coverage-groups-* run-id: ${{ needs.fetch-info.outputs.run-id }} - override-job-name: "Codacy title" force-git-commit: ${{ needs.fetch-info.outputs.commit-sha }} # force-uploader-language: ... # force-uploader-coverage-parser: ... @@ -50,7 +49,7 @@ jobs: codecov-uploader: name: Codecov needs: [fetch-info] - uses: yoanm/temp-reports-group-workspace/.github/workflows/codecov-upload-from-artifacts.yml@improve + uses: yoanm/temp-reports-group-workspace/.github/workflows/codecov-upload-from-artifacts.yml@v0 permissions: contents: read checks: write # For the check run creation ! @@ -59,7 +58,6 @@ jobs: with: artifacts-pattern: coverage-groups-* run-id: ${{ needs.fetch-info.outputs.run-id }} - override-job-name: "Codecov title" force-git-commit: ${{ needs.fetch-info.outputs.commit-sha }} force-git-branch: ${{ needs.fetch-info.outputs.branch }} force-gh-pr: ${{ needs.fetch-info.outputs.pr-number }}