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 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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 022
command before theactions/checkout
but that didn't work. But maybe I'm just missing something?Beta Was this translation helpful? Give feedback.
All reactions