DEV Community

azu
azu

Posted on

How to set GitHub Actions's `permissions`?

GitHub introduce permissions fields on GitHub Actions for security reasons.

The permissions field will help you to prevent software supply chain attack.

For example, codecov's bash script is hacked recently.

This supply chain attack affects to CI like Circle CI, GitHub Actions.

GitHub Actions can limit each actions's permissions.

For example, next permissios only allow the action to read repo's content.

permissions:
    contents: read
Enter fullscreen mode Exit fullscreen mode

The default permissions is write-all.
Of course, you can change the default workflow permission of the repository.

So, you need to do following to improve security of GitHub Actions.

  • Change the default permissiont to "Read repository contents permission "
  • Write each actions's permissions to yaml files

However, permissions is optional and it is a little of hard to set. Because, almost actions does not provides permissions guide.

@pkgdeps/update-github-actions-permissions

I've created a tool that update GitHub Actions's permissions automatically.

This tools detect using Actions and add permissions field to your action yaml file.

Requirements: Node.js 14+

You can update your GitHub Actions via following command:

npx @pkgdeps/update-github-actions-permissions ".github/workflows/*.{yaml,yml}"
Enter fullscreen mode Exit fullscreen mode

update-github-actions-permissions result

This tool supports 40+ actions.

If you found missing actions, please submit a pull request.

Related

Top comments (1)

Collapse
 
naztech01 profile image
Nazmul Hossain

Very helpfull