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/community_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: '^1.24.6'
go-version: '^1.26'
Comment thread
abh marked this conversation as resolved.

- name: Setup nodejs
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/community_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: '^1.24.6'
go-version: '^1.26'
Comment thread
abh marked this conversation as resolved.

- name: Setup nodejs
uses: actions/setup-node@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: '^1.24.6'
go-version: '^1.26'
Comment thread
abh marked this conversation as resolved.

- name: Setup nodejs
uses: actions/setup-node@v4
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: '^1.24.6'
go-version: '^1.26'

- name: Setup nodejs
uses: actions/setup-node@v4
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: '^1.24.6'
go-version: '^1.26'

- name: Setup nodejs
uses: actions/setup-node@v4
Expand Down Expand Up @@ -415,7 +415,7 @@ jobs:
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: '^1.24.6'
go-version: '^1.26'

- name: Setup nodejs
uses: actions/setup-node@v4
Expand Down Expand Up @@ -480,7 +480,7 @@ jobs:
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: '^1.24.6'
go-version: '^1.26'

- name: Setup nodejs
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pro_selfhosted_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: '^1.24.6'
go-version: '^1.26'
Comment thread
abh marked this conversation as resolved.

- name: Setup nodejs
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pro_selfhosted_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: '^1.24.6'
go-version: '^1.26'
Comment thread
abh marked this conversation as resolved.

- name: Setup nodejs
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion deployment/docker/dredd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24-alpine3.21 as golang
FROM golang:1.26-alpine3.23 as golang
Comment thread
abh marked this conversation as resolved.

RUN apk add --no-cache -U \
curl git
Expand Down
4 changes: 2 additions & 2 deletions deployment/docker/runner/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.24-alpine3.21 as builder
FROM --platform=$BUILDPLATFORM golang:1.26-alpine3.23 as builder
Comment thread
abh marked this conversation as resolved.

RUN apk add --no-cache -U \
libc-dev curl nodejs npm git gcc zip unzip tar
Expand Down Expand Up @@ -45,7 +45,7 @@ RUN curl -O https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraf
RUN wget -O /tmp/terragrunt https://github.com/gruntwork-io/terragrunt/releases/download/v${TERRAGRUNT_VERSION}/terragrunt_linux_${TARGETARCH} && \
chmod +x /tmp/terragrunt

FROM alpine:3.21
FROM alpine:3.23

ARG TARGETARCH="amd64"

Expand Down
4 changes: 2 additions & 2 deletions deployment/docker/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.24-alpine3.21 as builder
FROM --platform=$BUILDPLATFORM golang:1.26-alpine3.23 as builder
Comment thread
abh marked this conversation as resolved.

RUN apk add --no-cache -U \
libc-dev curl nodejs npm git gcc zip unzip tar
Expand Down Expand Up @@ -46,7 +46,7 @@ RUN curl -O https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraf
RUN wget -O /tmp/terragrunt https://github.com/gruntwork-io/terragrunt/releases/download/v${TERRAGRUNT_VERSION}/terragrunt_linux_${TARGETARCH} && \
chmod +x /tmp/terragrunt

FROM alpine:3.21
FROM alpine:3.23

ARG TARGETARCH="amd64"
# renovate: datasource=pypi depName=ansible
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/semaphoreui/semaphore

go 1.24.6
go 1.26

require (
github.com/Masterminds/squirrel v1.5.4
Expand Down
2 changes: 1 addition & 1 deletion pro/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/semaphoreui/semaphore/pro

go 1.24.6
go 1.26

Check notice on line 3 in pro/go.mod

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

pro/go.mod#L3

Insecure dependency golang/stdlib@v1.26.0 (CVE-2026-27138: crypto/x509: Panic in name constraint checking for malformed certificates in crypto/x509) (update to 1.26.1)

Check notice on line 3 in pro/go.mod

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

pro/go.mod#L3

Insecure dependency golang/stdlib@v1.26.0 (CVE-2026-27139: os: FileInfo can escape from a Root in golang os module) (update to 1.26.1)

require github.com/semaphoreui/semaphore v0.0.0-20250712180151-72836311c5b9

Expand Down
Loading