From f4b6f8349b5d36dd2251a1a2fa28a9fffbcab667 Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 29 Jan 2025 07:10:37 -0800 Subject: [PATCH] Update Licensed version in "Check Go Dependencies" 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-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 342e9fa0..b361b91e 100644 --- a/.github/workflows/check-go-dependencies-task.yml +++ b/.github/workflows/check-go-dependencies-task.yml @@ -78,7 +78,7 @@ jobs: uses: github/setup-licensed@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} - version: 3.x + version: 5.x - name: Install Go uses: actions/setup-go@v5