You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The release libcxx runner image was still using actions runner version 2.326.0
which is no longer supported and cannot connect to Github. This causes all jobs
to hang indefinitely on the release branch. Bump the container to a frankenstein
version that only has the runner version bumped for consistent. The container
was produced with the following Dockerfile:
```
FROM ghcr.io/actions/actions-runner:2.328.0 AS runner
FROM ghcr.io/llvm/libcxx-linux-builder:16f046281bf1a11d344eac1bc44d11f3e50e3b5d
COPY --from=runner /home/runner /home/runner
```
0 commit comments