elastic / apm-agent-php

Apache License 2.0
252 stars 69 forks source link

security: add permissions block to workflows #1136

Closed reakaleek closed 5 months ago

reakaleek commented 6 months ago

Details

⚠️ This PR was created by an automated tool. Please review the changes carefully. ⚠️

We want to set the default permissions for workflows to read-only for contents. This is a security measure to prevent accidental changes to the repository.

This change adds a top-level permissions block to all workflows in the .github/workflows directory.

permissions:
  contents: read

In some cases workflows might need more permissions than just contents: read. Please checkout this branch and add the necessary permissions to the workflows.

If your workflow uses a Personal Access Token (PAT), we can still add the permissions block, but it will not have any effect.

Merging this PR as is might cause workflows that need more permissions to fail.

If there are any questions, please reach out to the @elastic/observablt-ci

v1v commented 5 months ago

Blocked by https://github.com/elastic/apm-agent-php/pull/1144