From 320fe7d56bfd8d9e7b7694dce399643f5b61d580 Mon Sep 17 00:00:00 2001 From: Bassem Dghaidi <568794+Link-@users.noreply.github.com> Date: Wed, 6 Aug 2025 13:01:20 -0700 Subject: [PATCH] Update the licensed workflow to use the latest version --- .github/workflows/licensed.yml | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/.github/workflows/licensed.yml b/.github/workflows/licensed.yml index 37f1560..2f2b570 100644 --- a/.github/workflows/licensed.yml +++ b/.github/workflows/licensed.yml @@ -10,6 +10,20 @@ on: workflow_dispatch: jobs: - call-licensed: - name: Licensed - uses: actions/reusable-workflows/.github/workflows/licensed.yml@main + validate-cached-dependency-records: + runs-on: ubuntu-latest + name: Check licenses + steps: + + - name: Checkout + uses: actions/checkout@v4 + + - name: Install dependencies + run: npm ci --ignore-scripts + + - name: Install licensed tool + run: | + brew install licensed@5.0.4 + + - name: Check cached dependency records + run: licensed status \ No newline at end of file