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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
branches: [main, develop]

env:
GO_VERSION: '1.25.1'
GO_VERSION: '1.25.3'

jobs:
# Job 1: Build and Test
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
# Create a simple Dockerfile for scanning if it doesn't exist
if [ ! -f Dockerfile ]; then
cat > Dockerfile << EOF
FROM golang:1.25.1-alpine AS builder
FROM golang:1.25.3-alpine AS builder
WORKDIR /app
COPY go.mod ./
COPY go.su[m] ./
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This creates a minimal, secure production image

# Stage 1: Build stage
FROM golang:1.25.1-alpine AS builder
FROM golang:1.25.3-alpine AS builder

# Install build dependencies
RUN apk add --no-cache ca-certificates git tzdata
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/Tyrowin/gochat

go 1.25.1
go 1.25.3

require github.com/gorilla/websocket v1.5.3
Loading