From 93323eec88c7e44543bab2583c8347df9cb7314e Mon Sep 17 00:00:00 2001 From: Bill Napier Date: Sun, 12 Oct 2025 06:48:10 +0000 Subject: [PATCH] feat(workflows): Checkout google/licenseclassifier in classify workflow This change modifies the classify workflow to explicitly check out the google/licenseclassifier repository. This ensures that the correct version of the license classifier tool is used in the workflow, regardless of where the workflow is triggered from. --- .github/workflows/classify.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/classify.yml b/.github/workflows/classify.yml index 5f9532e..36ff481 100644 --- a/.github/workflows/classify.yml +++ b/.github/workflows/classify.yml @@ -19,6 +19,8 @@ jobs: license_name: ${{ steps.classify.outputs.license_name }} steps: - uses: actions/checkout@v3 + with: + repository: google/licenseclassifier - name: Set up Go uses: actions/setup-go@v4