From c86f49c9bea4f1eb02bb870339f457bc4c7efd48 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 2 Mar 2025 05:39:07 -0800 Subject: [PATCH] Bump "Licensed" version in dependency license check workflow The version of the "Licensed" tool for use in the GitHub Actions workflow is defined via the "licensee/setup-licensed" action's `version` input. The workflow contains two jobs that use the action. Previously, the action was configured to install the latest version of Licensed in one job, but by accident the update was performed in the other job, leaving it using the significantly outdated version 3.x of the action. The workflow is hereby updated to use the latest version of Licensed in all jobs. --- .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 87e2a95..57ce55f 100644 --- a/.github/workflows/check-npm-dependencies-task.yml +++ b/.github/workflows/check-npm-dependencies-task.yml @@ -139,7 +139,7 @@ jobs: uses: licensee/setup-licensed@v1.3.2 with: github_token: ${{ secrets.GITHUB_TOKEN }} - version: 3.x + version: 5.x - name: Setup Node.js uses: actions/setup-node@v4