Skip to content

Commit

Permalink
*: bump golang to 1.23.1 (#3261)
Browse files Browse the repository at this point in the history
Security fixes...

category: misc
ticket: none
  • Loading branch information
KaloyanTanev authored Sep 9, 2024
1 parent 8017faf commit 42957c6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-go/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ runs:
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: '1.23.0'
go-version: '1.23.1'
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
run:
timeout: 5m
go: "1.23.0"
go: "1.23.1"
linters-settings:
cyclop:
max-complexity: 15
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Container for building Go binary.
FROM golang:1.23.0-bookworm AS builder
FROM golang:1.23.1-bookworm AS builder
# Install dependencies
RUN apt-get update && apt-get install -y build-essential git
# Prep and copy source
Expand Down
2 changes: 1 addition & 1 deletion testutil/promrated/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.0-alpine AS builder
FROM golang:1.23.1-alpine AS builder

# Install dependencies
RUN apk add --no-cache build-base git
Expand Down

0 comments on commit 42957c6

Please sign in to comment.