uraimo / run-on-arch-action

A Github Action that executes jobs/commands on non-x86 cpu architectures (ARMv6, ARMv7, aarch64, s390x, ppc64le, riscv64) via QEMU
BSD 3-Clause "New" or "Revised" License
677 stars 149 forks source link

Is `githubToken` safe? #76

Closed timandy closed 2 years ago

timandy commented 2 years ago

this action prints Your password will be stored unencrypted in /home/runner/.docker/config.json.

uraimo commented 2 years ago

Hi, yes, it's safe, for the following reasons:

[1] https://docs.github.com/en/actions/security-guides/automatic-token-authentication [2] https://securitylab.github.com/research/github-actions-preventing-pwn-requests/

timandy commented 2 years ago

@uraimo Thanks for your answer. It's very helpful!