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/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23' # As to be >= 1.22 because of for loop variable capturing
go-version: '1.26.2'

- name: Set up Node.js
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN $HOME/.bun/bin/bun install
RUN $HOME/.bun/bin/bun run build

# --- Go Builder Stage ---
FROM golang:1.23-alpine AS builder
FROM golang:1.26.2-alpine AS builder

ARG VERSION
ARG TARGETOS
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The Docker image includes the pre-built web UI and the Go backend.

### Build from Source

Ensure you have [Go](https://golang.org/dl/) (version 1.21 or later) and [Bun](https://bun.sh/) installed.
Ensure you have [Go](https://golang.org/dl/) (version 1.26.2 or later) and [Bun](https://bun.sh/) installed.

1. **Clone the Repository**

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/dikkadev/bangs

go 1.24.0
go 1.26.2

require (
github.com/dikkadev/prettyslog v0.0.0-20241019093312-edc39a9d900a
Expand Down
Loading