Daniel Stevens
Daniel Stevens
I'm also seeing `valgrind` reported memory leaks related to GLEW in a game project I was working on, one of which appears to match up well with the error listed...
Just in case this is relevant, there was some code added in the last week or so where one of the main build jobs tries to re-use another workflow form...
I've also encountered this issue when running my Docker images on GitHub Actions, and have been able to reproduce while running my container locally. This seems to be more generally...
I see that related issue has been closed, though people are still complaining it's an issue for them. In the related issue, most comments are about self hosted runners. I'm...
I've prepared a minimal workflow that is able to reproduce the warning: ```yaml name: Checkout on: push: jobs: checkout: runs-on: ubuntu-22.04 steps: - name: Checkout Code uses: actions/checkout@v3 ``` In...
So we found the cause of the error, and it looks to have been on our end. I thought we weren't using any submodules, since we don't generally use them...