Skip to content

Commit 41d8a61

Browse files
committed
Use maintained fork of "setup-licensed" action in dependency license check workflow
This GitHub Actions action is used by the dependency license check workflow to install the "Licensed" tool in the runner workspace. The action has a convoluted history of ownership: 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 now 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 e76a2db commit 41d8a61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
submodules: recursive
6969

7070
- name: Install licensed
71-
uses: jonabc/setup-licensed@v1
71+
uses: licensee/setup-licensed@v1.3.2
7272
with:
7373
github_token: ${{ secrets.GITHUB_TOKEN }}
7474
version: 3.x
@@ -119,7 +119,7 @@ jobs:
119119
submodules: recursive
120120

121121
- name: Install licensed
122-
uses: jonabc/setup-licensed@v1
122+
uses: licensee/setup-licensed@v1.3.2
123123
with:
124124
github_token: ${{ secrets.GITHUB_TOKEN }}
125125
version: 3.x

0 commit comments

Comments
 (0)