Skip to content
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
17 changes: 17 additions & 0 deletions .github/actionlint-matcher.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"problemMatcher": [
{
"owner": "actionlint",
"pattern": [
{
"regexp": "^(?:\\x1b\\[\\d+m)?(.+?)(?:\\x1b\\[\\d+m)*:(?:\\x1b\\[\\d+m)*(\\d+)(?:\\x1b\\[\\d+m)*:(?:\\x1b\\[\\d+m)*(\\d+)(?:\\x1b\\[\\d+m)*: (?:\\x1b\\[\\d+m)*(.+?)(?:\\x1b\\[\\d+m)* \\[(.+?)\\]$",
"file": 1,
"line": 2,
"column": 3,
"message": 4,
"code": 5
}
]
}
]
}
63 changes: 63 additions & 0 deletions .github/actionlint-sarif-template.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"$schema": "https://json.schemastore.org/sarif-2.1.0.json",
"version": "2.1.0",
"runs": [
{
"tool": {
"driver": {
"name": "Actionlint",
"version": {{ getVersion | json }},
"informationUri": "https://github.com/rhysd/actionlint",
"rules": [
{{$first := true}}
{{range $ := allKinds}}
{{if $first}}{{$first = false}}{{else}},{{end}}
{
"id": {{json $.Name}},
"name": {{$.Name | toPascalCase | json}},
"defaultConfiguration": {
"level": "warning"
},
"fullDescription": {
"text": {{json $.Description}}
},
"helpUri": "https://github.com/rhysd/actionlint/blob/v1.7.12/docs/checks.md"
}
{{end}}
]
}
},
"results": [
{{$first := true}}
{{range $ := .}}
{{if $first}}{{$first = false}}{{else}},{{end}}
{
"ruleId": {{json $.Kind}},
"level": "warning",
"message": {
"text": {{json $.Message}}
},
"locations": [
{
"physicalLocation": {
"artifactLocation": {
"uri": {{json $.Filepath}},
"uriBaseId": "%SRCROOT%"
},
"region": {
"startLine": {{$.Line}},
"startColumn": {{$.Column}},
"endColumn": {{$.EndColumn}},
"snippet": {
"text": {{json $.Snippet}}
}
}
}
}
]
}
{{end}}
]
}
]
}
18 changes: 18 additions & 0 deletions .github/actionlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

self-hosted-runner:
labels:
- linux-amd64-cpu8
- linux-amd64-gpu-rtxpro6000-latest-1
- linux-arm64-cpu8
- linux-arm64-gpu-l4-latest-1
- nv
- ubuntu-26.04
- windows-arm64
- wsl-amd64-gpu-rtxpro6000-latest-1

paths:
.github/workflows/windows-msvc.yml:
ignore:
- 'constant expression "false" in condition'
15 changes: 15 additions & 0 deletions .github/codeql/codeql-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

name: OpenShell Rust and SDKs

paths:
- crates
- examples
- sdk/go
- sdk/typescript/src
- python/openshell

paths-ignore:
- python/openshell/_proto
- sdk/typescript/src/gen
123 changes: 121 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,125 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "Etc/UTC"
cooldown:
default-days: 2
default-days: 7
open-pull-requests-limit: 2
groups:
github-actions-version-updates:
applies-to: "version-updates"
patterns:
- "*"
github-actions-security-updates:
applies-to: "security-updates"
patterns:
- "*"

- package-ecosystem: "cargo"

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks like it expands what dependabot will scan, which is fine, but does it need to be part of this PR? It didn't seem to be called out directly but seems unrelated to the security checks. If it's not required here it would be nice to see it as its own PR to highlight that we're expanding dependabot's duties.

directories:
- "/"
- "/e2e/rust"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "Etc/UTC"
cooldown:
default-days: 7
open-pull-requests-limit: 2
groups:
rust-version-updates:
group-by: "dependency-name"
rust-security-updates:
applies-to: "security-updates"
patterns:
- "*"

- package-ecosystem: "gomod"
directory: "/sdk/go"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "Etc/UTC"
cooldown:
default-days: 7
open-pull-requests-limit: 2
groups:
go-version-updates:
applies-to: "version-updates"
patterns:
- "*"
update-types:
- "minor"
- "patch"
go-security-updates:
applies-to: "security-updates"
patterns:
- "*"

- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "Etc/UTC"
cooldown:
default-days: 7
open-pull-requests-limit: 2
groups:
python-version-updates:
applies-to: "version-updates"
patterns:
- "*"
update-types:
- "minor"
- "patch"
python-security-updates:
applies-to: "security-updates"
patterns:
- "*"

- package-ecosystem: "npm"
directories:
- "/sdk/typescript"
- "/scripts/lint-mermaid"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "Etc/UTC"
cooldown:
default-days: 7
open-pull-requests-limit: 2
groups:
npm-version-updates:
group-by: "dependency-name"
npm-security-updates:
applies-to: "security-updates"
patterns:
- "*"

- package-ecosystem: "docker"
directories:
- "/deploy/docker"
- "/scripts/agents/gator"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "Etc/UTC"
cooldown:
default-days: 7
open-pull-requests-limit: 2
groups:
docker-version-updates:
group-by: "dependency-name"
docker-security-updates:
applies-to: "security-updates"
patterns:
- "*"
131 changes: 131 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

name: CodeQL

on:
pull_request:
merge_group:
types: [checks_requested]
push:
branches: [main]
schedule:
- cron: "29 5 * * 6"
workflow_dispatch:

permissions:
contents: read
security-events: write

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
analyze:
name: CodeQL (${{ matrix.language }})
runs-on: ubuntu-latest
timeout-minutes: 90
strategy:
fail-fast: false
matrix:
include:
- language: rust
build-mode: none
- language: go
build-mode: manual
- language: python
build-mode: none
- language: javascript-typescript
build-mode: none
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false

- name: Set up Go
if: matrix.language == 'go'
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: sdk/go/go.mod
cache-dependency-path: sdk/go/go.sum

- name: Initialize CodeQL
uses: github/codeql-action/init@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
config-file: ./.github/codeql/codeql-config.yml

- name: Build Go SDK
if: matrix.language == 'go'
working-directory: sdk/go
run: go build ./...

- name: Analyze
id: analyze
uses: github/codeql-action/analyze@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7
with:
category: /language:${{ matrix.language }}
output: codeql-results
upload: never

- name: Summarize findings
if: always()
env:
LANGUAGE: ${{ matrix.language }}
shell: bash
run: |
set -euo pipefail
shopt -s globstar nullglob
sarif_files=(codeql-results/**/*.sarif)

{
echo "### CodeQL: $LANGUAGE"
echo
if [ "${#sarif_files[@]}" -eq 0 ]; then
echo "No SARIF report was produced."
else
finding_count=$(jq -s '[.[].runs[]?.results[]?] | length' "${sarif_files[@]}")
echo "Findings: $finding_count"
echo
echo "Findings are informational and do not fail CI."
fi
} >> "$GITHUB_STEP_SUMMARY"

- name: Upload SARIF to Code Scanning
if: >-
steps.analyze.outcome == 'success' &&
(github.event_name != 'pull_request' ||
github.event.pull_request.head.repo.full_name == github.repository)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P2] Dependabot PRs are treated like fork PRs for GITHUB_TOKEN permissions, but their head repository still equals github.repository. This condition therefore runs upload-sarif with a read-only token, so the security-events: write upload will fail. Please exclude Dependabot here and route its retained SARIF through the trusted workflow_run uploader as another restricted-token context.

uses: github/codeql-action/upload-sarif@ff2f1c621b7f889edc0d3c761ac2e6a3f8cdb0dd # v4.37.7
with:
sarif_file: codeql-results
category: /language:${{ matrix.language }}

- name: Upload SARIF
if: always()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: codeql-${{ matrix.language }}-${{ github.run_id }}
path: codeql-results
if-no-files-found: ignore
retention-days: 14

result:
name: OpenShell / CodeQL (informational)
if: always()
needs: analyze
runs-on: ubuntu-latest
permissions: {}
steps:
- name: Evaluate analyzer execution
env:
ANALYZE_RESULT: ${{ needs.analyze.result }}
shell: bash
run: |
if [ "$ANALYZE_RESULT" != "success" ]; then
echo "::error::One or more CodeQL analyzers did not complete successfully."
exit 1
fi
echo "All CodeQL analyzers completed; findings remain informational."
Loading
Loading