Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
1 change: 0 additions & 1 deletion .github/workflows/automated-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ permissions:
actions: read
checks: write
pull-requests: write
- dependencies-only

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
go-version: '1.23'
cache: true

- name: Install system dependencies (Ubuntu)
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
go-version: '1.23'

- name: Install system dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-advanced.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
if: matrix.language == 'go'
uses: actions/setup-go@v4
with:
go-version: '1.21'
go-version: '1.23'
cache: true
- name: Go mod download
if: matrix.language == 'go'
Expand Down Expand Up @@ -230,7 +230,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
go-version: '1.23'

- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
Expand Down
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,15 @@ models/*.safetensors
# Cache directories
.cache/
.cargo-cache/
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
node_modules/
.npm/
.yarn/
package-lock.json

# Local development stuff
local/
Expand Down
4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ keywords = ["ai", "security", "governance", "tpm", "enterprise"]
categories = ["security", "web-programming", "api-bindings"]
rust-version = "1.70"

[patch.crates-io]
protobuf = { version = "3.7.2" }
rsa = { version = "0.9.6" }
# [patch.crates-io] - Removed invalid patches that pointed to same source

[dependencies]
# Core async runtime
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Multi-stage build for Universal AI Governor
FROM rust:1.75 as rust-builder
FROM rust:1.80 as rust-builder

WORKDIR /app
COPY Cargo.toml Cargo.lock ./
Expand All @@ -10,7 +10,7 @@ COPY benches/ ./benches/
RUN cargo build --release

# Go builder stage
FROM golang:1.21 as go-builder
FROM golang:1.23 as go-builder

WORKDIR /app
COPY go.mod go.sum ./
Expand Down
Loading
Loading