Replies: 1 comment
|
Hi there @jpreynat and welcome to our community! Thank you for asking a great question 🙂 To get started, introduce yourself in our official introduction thread |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Select Topic Area
Product Feedback
Body
Hi 👋
We've been using the GitHub-hosted runners for a while now, and I recently tried to switch our jobs to use the new large runners.
However, some of our tests have started failing as soon as I made the switch. Those tests include checks on file permissions.
After investigating a bit, it turns out that the umask value is different between the "original" GitHub-hosted runners
ubuntu-latest, with a umask of 022, and the newubuntu-latest-4-cores, for which the umask is 002.This looks like a breaking change that can have a big impact on jobs running on GitHub actions.
On my end, I have tested running the
umask 022command before theactions/checkoutbut that didn't work. But maybe I'm just missing something?All reactions