From be118c2e3d288d0c4c6bbd2854bda8328cc99f7a Mon Sep 17 00:00:00 2001 From: per1234 Date: Sat, 1 Mar 2025 19:59:23 -0800 Subject: [PATCH] Update Licensed version in dependencies license check workflow The version of the "Licensed" tool for use in the GitHub Actions workflow is defined via the "github/setup-licensed" action's `version` input. Previously the action was configured to install version 3.x of the action. That version is significantly outdated. The workflow is hereby updated to use the latest version of Licensed. --- .github/workflows/check-npm-dependencies-task.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-npm-dependencies-task.yml b/.github/workflows/check-npm-dependencies-task.yml index 92da421..235b718 100644 --- a/.github/workflows/check-npm-dependencies-task.yml +++ b/.github/workflows/check-npm-dependencies-task.yml @@ -80,7 +80,7 @@ jobs: uses: github/setup-licensed@v1.3.1 with: github_token: ${{ secrets.GITHUB_TOKEN }} - version: 3.x + version: 5.x - name: Setup Node.js uses: actions/setup-node@v4