From 3193265e54871df4d6a9332d6a6b4f447178e6c9 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Thu, 30 Jan 2025 12:47:15 +0100 Subject: [PATCH 1/3] 2025 --- README.md | 2 +- REUSE.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ca3ce1e..842a6b4 100644 --- a/README.md +++ b/README.md @@ -182,6 +182,6 @@ OCM follows the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/m ## Licensing -Copyright 2022-2023 SAP SE or an SAP affiliate company and Open Component Model contributors. +Copyright 2025 SAP SE or an SAP affiliate company and Open Component Model contributors. Please see our [LICENSE](LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/open-component-model/replication-controller). diff --git a/REUSE.toml b/REUSE.toml index ac459cc..451fdb6 100644 --- a/REUSE.toml +++ b/REUSE.toml @@ -7,5 +7,5 @@ SPDX-PackageComment = "The code in this project may include calls to APIs (\"API [[annotations]] path = "**" precedence = "aggregate" -SPDX-FileCopyrightText = "2022 SAP SE or an SAP affiliate company and Open Component Model contributors" +SPDX-FileCopyrightText = "2025 SAP SE or an SAP affiliate company and Open Component Model contributors" SPDX-License-Identifier = "Apache-2.0" From 6444ca9bdec4d0c64ac3964b4dd3549cfee1ad9d Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Thu, 30 Jan 2025 12:47:32 +0100 Subject: [PATCH 2/3] add "Code scanning" --- .github/workflows/code-scan.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/code-scan.yml diff --git a/.github/workflows/code-scan.yml b/.github/workflows/code-scan.yml new file mode 100644 index 0000000..5149e72 --- /dev/null +++ b/.github/workflows/code-scan.yml @@ -0,0 +1,20 @@ +name: "Code scanning" + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + schedule: + - cron: "26 14 * * 2" + +jobs: + gosec: + permissions: + # Required to upload SARIF files + security-events: write + # for actions/checkout to fetch code + contents: read + # call reusable workflow from central '.github' repo + uses: open-component-model/.github/.github/workflows/code-scan.yml@main + secrets: inherit From f47c338879a7758f7951c1a12ca2b34957501829 Mon Sep 17 00:00:00 2001 From: Hilmar Falkenberg Date: Thu, 6 Feb 2025 17:30:20 +0100 Subject: [PATCH 3/3] no cron necessary --- .github/workflows/code-scan.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/code-scan.yml b/.github/workflows/code-scan.yml index 5149e72..361a493 100644 --- a/.github/workflows/code-scan.yml +++ b/.github/workflows/code-scan.yml @@ -5,8 +5,6 @@ on: branches: ["main"] pull_request: branches: ["main"] - schedule: - - cron: "26 14 * * 2" jobs: gosec: