Open
Description
Seems like there is an issue with Github Action Runners.
all our different actions looks 'wierd'.
The job output seems collapsed into a single Text output and seems ilke the job are never ends.
just created a simple dummy action to test it and it got reproduce.
name: Tester
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: echo
run: |
echo Bla
Output is endless while at the end seems like job cannot complete the cleanup process.
Post job cleanup.
/usr/bin/git version
git version 2.47.0
Temporarily overriding HOME='/home/runner/work/_temp/ab3e00c9-67e9-4e9a-83c1-740a432d20c6' before making global git config changes
Adding repository directory to the temporary git global config as a safe directory
/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
http.https://github.com/.extraheader
/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
Cleaning up orphan processes
Anyone else encountering such issues?
havent seen anything yet on Github-Status indicating the issue