From 3c9667bd7248b5a3419a7858456ddf1327c209a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Oct 2025 11:06:26 +0000 Subject: [PATCH 1/2] chore(deps): Bump fsfe/reuse-action from 5.0.0 to 6.0.0 Bumps [fsfe/reuse-action](https://github.com/fsfe/reuse-action) from 5.0.0 to 6.0.0. - [Release notes](https://github.com/fsfe/reuse-action/releases) - [Commits](https://github.com/fsfe/reuse-action/compare/bb774aa972c2a89ff34781233d275075cbddf542...676e2d560c9a403aa252096d99fcab3e1132b0f5) --- updated-dependencies: - dependency-name: fsfe/reuse-action dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/reuse.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index 51325b6d..703fe0ed 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -21,4 +21,4 @@ jobs: persist-credentials: false - name: REUSE Compliance Check - uses: fsfe/reuse-action@bb774aa972c2a89ff34781233d275075cbddf542 # v5.0.0 + uses: fsfe/reuse-action@676e2d560c9a403aa252096d99fcab3e1132b0f5 # v6.0.0 From 794a24f5c2bf1740db14b5b5262b555f60bc7fa3 Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Sun, 30 Nov 2025 12:38:11 +0100 Subject: [PATCH 2/2] ci/reuse): ignore reuse creation lines ...falsely detected as license header lines Signed-off-by: Andy Scherzinger --- build-js/WebpackSPDXPlugin.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-js/WebpackSPDXPlugin.js b/build-js/WebpackSPDXPlugin.js index a9c2eabd..1cbd7431 100644 --- a/build-js/WebpackSPDXPlugin.js +++ b/build-js/WebpackSPDXPlugin.js @@ -197,6 +197,7 @@ class WebpackSPDXPlugin { authors.add(pkg.author) output += `- ${pkg.name}\n\t- version: ${pkg.version}\n\t- license: ${license}\n` } + // REUSE-IgnoreStart output = `\n\n${output}` for (const author of [...authors].sort()) { output = `SPDX-FileCopyrightText: ${author}\n${output}` @@ -204,6 +205,7 @@ class WebpackSPDXPlugin { for (const license of [...licenses].sort()) { output = `SPDX-License-Identifier: ${license}\n${output}` } + // REUSE-IgnoreEnd compilation.emitAsset( asset.split('?', 2)[0] + '.license',