Files
actions/.github/workflows/dependency-review.yaml
blacksmith-sh[bot] 61ada6397e .github/workflows: Migrate workflows to Blacksmith runners (#9)
Migrate workflows to Blacksmith

Co-authored-by: blacksmith-sh[bot] <157653362+blacksmith-sh[bot]@users.noreply.github.com>
2025-09-27 08:12:29 +03:30

37 lines
875 B
YAML

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Dependency Review
# Required permission on the caller workflow
# permissions:
# contents: read
on:
workflow_call:
inputs:
base_ref:
description: 'The base ref for the dependency review'
required: false
type: string
default: 'next'
head_ref:
description: 'The head ref for the dependency review'
required: false
type: string
default: 'next'
jobs:
main:
name: Dependency Review
runs-on: blacksmith-2vcpu-ubuntu-2404
steps:
- name: ⤵️ Checkout repository
uses: actions/checkout@v5
- name: 🚀 Dependency Review
uses: actions/dependency-review-action@v4
with:
base-ref: ${{ inputs.base_ref }}
head-ref: ${{ inputs.head_ref }}