chore(deps): update terraform aws to v6.45.0 #443
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: "Labeler" | |
| # SECURITY: This workflow uses pull_request_target and has access to secrets. | |
| # NEVER add an actions/checkout step here or run any code from the PR. | |
| # See: CVE-2025-30066, CVE-2025-30154, CVE-2026-33634 | |
| on: | |
| pull_request_target: | |
| branches: ["main"] | |
| types: ["opened", "synchronize"] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| labeler: | |
| name: Labeler | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Generate Token | |
| uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 | |
| id: app-token | |
| with: | |
| app-id: "${{ secrets.BOT_APP_ID }}" | |
| private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
| - name: Labeler | |
| uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6.1.0 | |
| with: | |
| configuration-path: .github/labeler.yaml | |
| repo-token: "${{ steps.app-token.outputs.token }}" |