Skip to content

Commit 26bd566

Browse files
committed
Use maintained fork of "setup-licensed" action in dependencies license check workflow
This GitHub Actions action is used by the dependencies license check workflow to install the "Licensed" tool in the runner workspace. The action has a convoluted history: the repository was originally owned by GitHub user `jonabc`. It was later transferred to the `github` organization. Then GitHub abandoned the project, archiving the repository. The `licensee` organization has now created a hard fork of the action, which is recommended in the readme of the `github/setup-licensed` repository. The `licensee` organization has also taken over the management of the "Licensed" tool, and their `licensee` Ruby gem is a significant dependency of "Licensed". So they will be best equipped to maintain the action going forward. The workflow is hereby updated to use the canonical "licensee/setup-licensed" action. The "licensee/setup-licensed" action maintainers have not provided a major version ref, so it is necessary to pin the action to the latest release tag.
1 parent 2bf6e95 commit 26bd566

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check-go-dependencies-task.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
submodules: recursive
7474

7575
- name: Install licensed
76-
uses: jonabc/setup-licensed@v1
76+
uses: licensee/setup-licensed@v1.3.2
7777
with:
7878
github_token: ${{ secrets.GITHUB_TOKEN }}
7979
version: 3.x
@@ -124,7 +124,7 @@ jobs:
124124
submodules: recursive
125125

126126
- name: Install licensed
127-
uses: github/[email protected].1
127+
uses: licensee/[email protected].2
128128
with:
129129
github_token: ${{ secrets.GITHUB_TOKEN }}
130130
version: 3.x

0 commit comments

Comments
 (0)