From b2cec8e7ddab61dddb57dbb7dd871ac94ad26090 Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Thu, 4 Jul 2024 22:03:01 +0200 Subject: [PATCH] docs: Update examples to use v4 and remove dep5 definition Signed-off-by: Andy Scherzinger --- .reuse/dep5 | 10 ---------- README.md | 12 ++++++++---- 2 files changed, 8 insertions(+), 14 deletions(-) delete mode 100644 .reuse/dep5 diff --git a/.reuse/dep5 b/.reuse/dep5 deleted file mode 100644 index 4b00a0b..0000000 --- a/.reuse/dep5 +++ /dev/null @@ -1,10 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: REUSE GitHub Action -Upstream-Contact: Free Software Foundation Europe e.V. -Source: https://github.com/fsfe/reuse-action - -# Sample paragraph, commented out: -# -# Files: src/* -# Copyright: $YEAR $NAME <$CONTACT> -# License: ... diff --git a/README.md b/README.md index a0738c3..3498384 100644 --- a/README.md +++ b/README.md @@ -36,10 +36,12 @@ name: REUSE Compliance Check on: [push, pull_request] jobs: - test: + reuse-compliance-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout + uses: actions/checkout@v4 + - name: REUSE Compliance Check uses: fsfe/reuse-action@v4 ``` @@ -47,7 +49,8 @@ jobs: If you would like to run other subcommands, you could use the following snippet which outputs a the SPDX bill of materials: ```yml - - uses: actions/checkout@v4 + - name: Checkout + uses: actions/checkout@v4 - name: REUSE SPDX SBOM uses: fsfe/reuse-action@v4 with: @@ -57,7 +60,8 @@ If you would like to run other subcommands, you could use the following snippet In the same fashion, it is possible to add optional arguments like `--include-submodules`: ```yml - - uses: actions/checkout@v4 + - name: Checkout + uses: actions/checkout@v4 - name: REUSE Compliance Check uses: fsfe/reuse-action@v4 with: