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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/secret-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: GitLeaks Security Scan

on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]

jobs:
gitleaks:
name: Secret Detection
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Run GitLeaks
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }}
2 changes: 1 addition & 1 deletion charts/langstream/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: langstream
description: Helm chart for LangStream
type: application
version: 0.6.3
version: 1.1.0
appVersion: 0.6.2
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ rules:
- applications/status
verbs:
- "*"
- apiGroups:
- "apps"
resources:
- statefulsets
verbs:
- "*"
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ rules:
- services
- pods
- configmaps
- namespaces
verbs:
- "*"
- apiGroups:
- "metrics.k8s.io"
resources:
- pods
verbs:
- "*"
---
Expand Down