Skip to content

chore(deps): bump tar from 7.5.2 to 7.5.9 #1078

chore(deps): bump tar from 7.5.2 to 7.5.9

chore(deps): bump tar from 7.5.2 to 7.5.9 #1078

name: Dependency Review
on:
pull_request:
pull_request_target:
branches: [master]
workflow_dispatch:
inputs:
base_ref:
description: Base ref to diff against (e.g. master)
required: true
default: master
head_ref:
description: Head ref to diff (optional; defaults to dispatch ref)
required: false
permissions:
contents: read
pull-requests: read
jobs:
dependency-review:
runs-on: ubuntu-latest
if: >-
${{
(github.event_name != 'pull_request' || !startsWith(github.head_ref, 'release-please--')) &&
(
github.event_name != 'pull_request_target' ||
(
github.event.pull_request.head.repo.full_name == github.repository &&
startsWith(github.head_ref, 'release-please--')
)
)
}}
env:
BASE_REF: ${{ github.event_name == 'workflow_dispatch' && inputs.base_ref || github.event.pull_request.base.ref }}
HEAD_REF: ${{ github.event_name == 'workflow_dispatch' && (inputs.head_ref || github.ref_name) || github.event.pull_request.head.ref }}
steps:
- name: Checkout
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- name: Dependency Review
uses: actions/dependency-review-action@v4
with:
base-ref: ${{ env.BASE_REF }}
head-ref: ${{ env.HEAD_REF }}