-
Notifications
You must be signed in to change notification settings - Fork 58
Update to Node.js 24 #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f17d39a
e16ad4b
a34e3f9
b1ab05b
8f17777
9def666
2c46248
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,23 @@ | ||
| name: Licensed | ||
|
|
||
| on: | ||
| push: {branches: main} | ||
| pull_request: {branches: main} | ||
| push: {branches: [main]} | ||
| pull_request: {branches: [main]} | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| name: Check licenses | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - uses: actions/checkout@v6 | ||
| - uses: actions/setup-node@v6 | ||
| with: | ||
| node-version: '24' | ||
| - run: npm ci | ||
| - name: Install licensed | ||
| run: | | ||
| cd $RUNNER_TEMP | ||
| curl -Lfs -o licensed.tar.gz https://github.com/github/licensed/releases/download/2.12.2/licensed-2.12.2-linux-x64.tar.gz | ||
| curl -Lfs -o licensed.tar.gz https://github.com/licensee/licensed/releases/download/3.9.1/licensed-3.9.1-linux-x64.tar.gz | ||
| sudo tar -xzf licensed.tar.gz | ||
| sudo mv licensed /usr/local/bin/licensed | ||
| - run: licensed status | ||
| - run: licensed status | ||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -10,6 +10,7 @@ allowed: | |||
| - cc0-1.0 | ||||
| - unlicense | ||||
| - 0bsd | ||||
| - other | ||||
|
||||
| - other |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This workflow downloads and installs an executable directly into
/usr/local/binwithout integrity verification, and it also switches the download source fromgithub/licensedtolicensee/licensed. To harden this, pin to a known canonical distribution source (or justify the fork), and add integrity checks (e.g., verify a published SHA256/SHA512) before extraction/execution to reduce supply-chain risk.