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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
test-unit:
runs-on: ubuntu-latest
container:
image: golang:1.25.3-trixie
image: golang:1.25.4-trixie
steps:
# Install Git from "trixie" repository to get a more recent version than
# the one available in "stable". This can be removed once the version in
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
checks: write # Used to create checks (linting comments) on PRs
runs-on: ubuntu-latest
container:
image: golang:1.25.3-trixie
image: golang:1.25.4-trixie
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand All @@ -104,7 +104,7 @@ jobs:
lint-charts:
runs-on: ubuntu-latest
container:
image: golang:1.25.3-trixie
image: golang:1.25.4-trixie
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand All @@ -129,7 +129,7 @@ jobs:
checks: write # Used to create checks (linting comments) on PRs
runs-on: ubuntu-latest
container:
image: golang:1.25.3-trixie
image: golang:1.25.4-trixie
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand All @@ -152,7 +152,7 @@ jobs:
check-codegen:
runs-on: ubuntu-latest
container:
image: golang:1.25.3-trixie
image: golang:1.25.4-trixie
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
needs: [test-unit, lint-go, lint-charts, lint-proto, lint-and-typecheck-ui, check-codegen]
runs-on: ubuntu-latest
container:
image: golang:1.25.3-trixie
image: golang:1.25.4-trixie
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: '1.23.0'
go-version: '1.25.4'
- name: Set version for unstable builds
id: unstable-version
run: |
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
if: github.event_name == 'release'
runs-on: ubuntu-latest
container:
image: golang:1.25.3-trixie
image: golang:1.25.4-trixie
strategy:
matrix:
os: [linux, darwin, windows]
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
if: github.event_name != 'release'
runs-on: ubuntu-latest
container:
image: golang:1.25.3-trixie
image: golang:1.25.4-trixie
strategy:
matrix:
os: [linux, darwin, windows]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN NODE_ENV='production' VERSION=${VERSION} pnpm run build
####################################################################################################
# back-end-builder
####################################################################################################
FROM --platform=$BUILDPLATFORM golang:1.25.3-trixie AS back-end-builder
FROM --platform=$BUILDPLATFORM golang:1.25.4-trixie AS back-end-builder

ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25.3-trixie
FROM golang:1.25.4-trixie

ARG TARGETARCH

Expand Down