From 83bd13ba64332591c92608a5d69f8b3db3dcd24b Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 2 Mar 2025 05:13:47 -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-go-dependencies-task.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-go-dependencies-task.yml b/.github/workflows/check-go-dependencies-task.yml index 335e666c..88807599 100644 --- a/.github/workflows/check-go-dependencies-task.yml +++ b/.github/workflows/check-go-dependencies-task.yml @@ -137,7 +137,7 @@ jobs: uses: licensee/setup-licensed@v1.3.2 with: github_token: ${{ secrets.GITHUB_TOKEN }} - version: 3.x + version: 5.x - name: Install Go uses: actions/setup-go@v5