chore(deps): update golangci/golangci-lint-action action to v9 - autoclosed #36
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: Backport | |
| on: | |
| # NOTE(negz): This is a risky target, but we run this action only when and if | |
| # a PR is closed, then filter down to specifically merged PRs. We also don't | |
| # invoke any scripts, etc from within the repo. I believe the fact that we'll | |
| # be able to review PRs before this runs makes this fairly safe. | |
| # https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
| pull_request_target: | |
| types: [closed] | |
| # See also commands.yml for the /backport triggered variant of this workflow. | |
| permissions: | |
| contents: read | |
| jobs: | |
| open-pr: | |
| permissions: | |
| contents: write # for zeebe-io/backport-action to create branch | |
| pull-requests: write # for zeebe-io/backport-action to create PR to backport | |
| runs-on: ubuntu-24.04 | |
| if: github.event.pull_request.merged | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Open Backport PR | |
| uses: zeebe-io/backport-action@d07416681cab29bf2661702f925f020aaa962997 # v3.4.1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| github_workspace: ${{ github.workspace }} | |
| version: v0.0.4 |