runner
runner copied to clipboard
The Runner for GitHub Actions :rocket:
**Describe the bug** The schema for validating actions is invalid for matrices. In the online editor it marks a job as invalid, but the runner understands the syntax and is...
**Describe the bug** I've recently noticed that the logs for some job steps aren't expandable after the job has been completed. This issue has only appeared within the last day...
Proposed fix for https://github.com/actions/runner/issues/2309 This fix relocates the logic for expanding a step's display name. In the previous implementation, the display name was evaluated as part of step execution. It...
**Current Situation:** Every pipeline step that uses environments automatically creates a new deployment. [This seems to be wanted behavior](https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#how-environments-relate-to-deployments). **Problem** Access to an ``environment`` might be also needed for other...
**Describe the bug** One or more jobs are skipped in a workflow when run after successfully running a job matching following conditions: - Job has NEEDS dependency on one or...
**Describe the bug** The GitHub Runner versions `2.299.1` and `2.300.0` ([most recent versions](https://github.com/actions/runner/releases) at the time of writing) have 1 critical severity and 6 high severity CVEs found by Trivy...
**Describe the bug** Usage of env in workflow that uses reusable workflow generates "Unrecognized named-value: 'env'. Located at position 1 within expression" **To Reproduce** Use the following yml: ``` name:...
**Describe the enhancement** We would like to see `timeout-minutes` supported on steps in composite actions **Code Snippet** If applicable, add a code snippet. ```yaml name: terraform-cache inputs: working-directory: description: Directory...
Getting "Invalid type found: array was expected but string was found" at matrix: value: ${{fromJson(needs.setup.outputs.matrix)}} Any ${{}} expression fails. Only [] is allowed now, with at least one value. But...