diff --git a/Dockerfile b/Dockerfile index e44ae65..864a71c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # # SPDX-License-Identifier: GPL-3.0-or-later -FROM fsfe/reuse:1 +FROM fsfe/reuse:2 # Copy reuse wrapper used as entrypoint COPY reuse-action-wrapper.sh /bin/reuse-action-wrapper diff --git a/README.md b/README.md index e230a8c..ab986b2 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: REUSE Compliance Check - uses: fsfe/reuse-action@v1 + uses: fsfe/reuse-action@v2 ``` 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@v3 - name: REUSE SPDX SBOM - uses: fsfe/reuse-action@v1 + uses: fsfe/reuse-action@v2 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@v3 - name: REUSE Compliance Check - uses: fsfe/reuse-action@v1 + uses: fsfe/reuse-action@v2 with: args: --include-submodules lint ```