Skip to content

chore(deps)(deps): bump google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml from 2.3.8 to 2.6.0 #23

chore(deps)(deps): bump google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml from 2.3.8 to 2.6.0

chore(deps)(deps): bump google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml from 2.3.8 to 2.6.0 #23

Workflow file for this run

name: PR Template Validation

Check warning on line 1 in .github/workflows/danger.yml

View workflow run for this annotation

GitHub Actions / PR Template Validation

Workflow execution policy warning (evaluate mode)

On November 2, 2026, GitHub will restrict `pull_request_target` on public repositories by default. To continue allowing the event trigger, configure an Actions policy. Learn more: https://gh.io/securely-using-pull_request_target#default-policy-for-pull_request_target
# pull_request_target is used (instead of pull_request) so that GITHUB_TOKEN
# has write permissions even for PRs from forks, which is required for Danger
# to post review comments. The Dangerfile is always read from the base branch
# (checked out below), so no untrusted code from the fork is executed.
on:
pull_request_target:
types: [opened, edited, reopened, synchronize]
permissions:
contents: read
pull-requests: write
issues: write
jobs:
danger:
if: ${{ github.repository_owner == 'AOSSIE-Org' }}
runs-on: ubuntu-latest
steps:
- name: Checkout base branch
uses: actions/checkout@v7
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "20"
- name: Run Danger JS
run: npx --yes danger@13.0.7 ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}