Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some code fixes and getting proper restricted kubeconfig structs #2

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .clomonitor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# CLOMonitor metadata file

# Checks exemptions
exemptions:
- check: artifacthub_badge
reason: "Nephio artifacts are hosted on DockerHub"

- check: signed_releases
reason: >
"All Nephio release images are cryptographically signed during build with cosign.
Images and signatures are hosted in DockerHub. Naming convention is that signature
filename is an image sha256 digest and the file extension is .sig
Scorecard check is currently limited to repositories hosted on GitHub,
and does not support other source hosting repositories."

licenseScanning:
# In Nephio every PR is being tested for license compliance. Those include Fossology scan, Scancode-toolkit scan and
# Lichen scan of produced binaries. The results of those scans are available at Prow site:
url: https://prow.nephio.io/
13 changes: 10 additions & 3 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
- cron: '28 7 * * 0'
workflow_dispatch:

permissions:
contents: read

jobs:
analyze:
name: Analyze (${{ matrix.language }})
Expand All @@ -27,10 +30,14 @@ jobs:
- language: go
build-mode: autobuild
steps:
- name: Harden Runner
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@23acc5c183826b7a8a97bce3cecc52db901f8251 # v3.25.10
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
Expand All @@ -39,7 +46,7 @@ jobs:
make docker-build

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@23acc5c183826b7a8a97bce3cecc52db901f8251 # v3.25.10
with:
category: "/language:${{matrix.language}}"

Loading