Skip to content
Merged
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- develop

env:
GO_VERSION: '1.21'
GO_VERSION: '1.23'
NODE_VERSION: '18'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.23'

- name: Download dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM golang:1.21-alpine AS builder
FROM golang:1.23-alpine AS builder

# Build arguments for versioning
ARG VERSION=dev
Expand All @@ -9,7 +9,7 @@
ARG TARGETARCH

# Install build dependencies
RUN apk add --no-cache git make ca-certificates

Check failure on line 12 in api/Dockerfile

View workflow job for this annotation

GitHub Actions / Dockerfile Linting (api)

DL3018 warning: Pin versions in apk add. Instead of `apk add <package>` use `apk add <package>=<version>`

WORKDIR /workspace

Expand Down Expand Up @@ -38,7 +38,7 @@
LABEL org.opencontainers.image.source="https://github.com/yourusername/streamspace"

# Install runtime dependencies
RUN apk add --no-cache ca-certificates git tzdata wget

Check failure on line 41 in api/Dockerfile

View workflow job for this annotation

GitHub Actions / Dockerfile Linting (api)

DL3018 warning: Pin versions in apk add. Instead of `apk add <package>` use `apk add <package>=<version>`

WORKDIR /app

Expand Down
4 changes: 1 addition & 3 deletions api/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/streamspace/streamspace/api

go 1.24.0

toolchain go1.24.7
go 1.23

require (
github.com/crewjam/saml v0.5.1
Expand Down
2 changes: 1 addition & 1 deletion controller/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM golang:1.21 AS builder
FROM golang:1.23 AS builder

# Build arguments for versioning
ARG VERSION=dev
Expand Down
2 changes: 1 addition & 1 deletion controller/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/streamspace/streamspace

go 1.21
go 1.23

require (
github.com/onsi/ginkgo/v2 v2.11.0
Expand Down
3 changes: 2 additions & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build": "vite build",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "echo 'No tests configured yet' && exit 0"
Expand Down
Loading