From 618b8e9e1b4017c7fcbbf8e97acebb45cc876605 Mon Sep 17 00:00:00 2001 From: "Bernhard E. Reiter" Date: Thu, 1 Aug 2024 15:58:07 +0200 Subject: [PATCH] Update README.md for new major version of action @v3 -> @v4 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b9fcd3b..a0738c3 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: REUSE Compliance Check - uses: fsfe/reuse-action@v3 + uses: fsfe/reuse-action@v4 ``` If you would like to run other subcommands, you could use the following snippet which outputs a the SPDX bill of materials: @@ -49,7 +49,7 @@ If you would like to run other subcommands, you could use the following snippet ```yml - uses: actions/checkout@v4 - name: REUSE SPDX SBOM - uses: fsfe/reuse-action@v3 + uses: fsfe/reuse-action@v4 with: args: spdx ``` @@ -59,7 +59,7 @@ In the same fashion, it is possible to add optional arguments like `--include-su ```yml - uses: actions/checkout@v4 - name: REUSE Compliance Check - uses: fsfe/reuse-action@v3 + uses: fsfe/reuse-action@v4 with: args: --include-submodules lint ```