Bump actions/setup-node from 6 to 7 #16
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
| # Calls the org-shared workflow that runs Claude against each Dependabot PR | |
| # to check for supply-chain attack signals, then enables auto-merge if | |
| # approved. See https://github.com/de-otio/.github for implementation. | |
| name: Dependabot review | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request_target' }} | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| id-token: write | |
| jobs: | |
| review: | |
| if: github.actor == 'dependabot[bot]' | |
| uses: de-otio/.github/.github/workflows/dependabot-claude-review.yml@main | |
| secrets: inherit |