mirror of
https://github.com/actions/github-script.git
synced 2026-02-08 03:57:27 +00:00
Bumps [jonabc/setup-licensed](https://github.com/jonabc/setup-licensed) from 1.1.1 to 1.1.4.
- [Commits](82c5f4d19e...d6b3a6f705)
---
updated-dependencies:
- dependency-name: jonabc/setup-licensed
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
27 lines
599 B
YAML
27 lines
599 B
YAML
name: Licensed
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
name: Check licenses
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0 # prefer to use a full fetch for licensed workflows
|
|
# https://github.com/jonabc/setup-licensed/releases/tag/v1.1.1
|
|
- uses: jonabc/setup-licensed@d6b3a6f7058c2b40c06d205e13e15c2418977566
|
|
with:
|
|
version: '3.x'
|
|
- uses: ./.github/actions/install-dependencies
|
|
- run: licensed status
|