diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index cd076f1..40cdda6 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -35,9 +35,7 @@ jobs: - name: Clone the repository uses: actions/checkout@v4 - name: Lint YAML files - uses: ibiqlik/action-yamllint@v3 - with: - file_or_dir: license-classifications.yml + run: yamllint license-classifications.yml REUSE: runs-on: ubuntu-latest @@ -45,9 +43,5 @@ jobs: steps: - name: Clone the repository uses: actions/checkout@v4 - - name: Setup Python - uses: actions/setup-python@v5 - name: Check REUSE Compliance - run: | - pip install --user reuse - ~/.local/bin/reuse lint + uses: fsfe/reuse-action@v6 diff --git a/.yamllint b/.yamllint index 7cf554f..b7e57dc 100644 --- a/.yamllint +++ b/.yamllint @@ -6,6 +6,9 @@ extends: default rules: + empty-lines: + max: 1 + max-end: 1 line-length: max: 100 truthy: disable