Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5.3.0
with:
go-version: 1.24.11
go-version: 1.24.13
- name: Checkout code
uses: actions/checkout@v4.2.2
- name: Run unit tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v1
with:
go-version: 1.13
go-version: 1.24.11
Comment thread
mbreitung marked this conversation as resolved.
Outdated
Comment thread
mvalin marked this conversation as resolved.
Outdated
- name: Checkout code
uses: actions/checkout@v2
- name: Run unit tests
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.11 AS builder
FROM golang:1.24.13 AS builder

ENV OUTPUT_DIR=/out

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_linux_arm64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.11 AS builder
FROM golang:1.24.13 AS builder

ENV OUTPUT_DIR=/out

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile_linux_s390x
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.11 AS builder
FROM golang:1.24.13 AS builder

ENV OUTPUT_DIR=/out

Expand Down
Loading