Skip to content

Commit

Permalink
Merge pull request #327 from alfrunes/bump-golang
Browse files Browse the repository at this point in the history
chore: Bump golang version to 1.23.4
alfrunes authored Jan 16, 2025

Verified

This commit was signed with the committer’s verified signature.
prabhu prabhu
2 parents 790ca1f + 2527dc2 commit 70619af
Showing 10 changed files with 18 additions and 10 deletions.
10 changes: 9 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@ updates:
reviewers:
- "mendersoftware/frontend-dependabot-reviewers"

# backend part starts here
# backend part starts here
- commit-message:
prefix: chore
directory: /backend
@@ -64,7 +64,15 @@ updates:
prefix: chore
directories:
- /backend/services/create-artifact-worker
- /backend/services/deployments
- /backend/services/deviceauth
- /backend/services/deviceconfig
- /backend/services/deviceconnect
- /backend/services/inventory
- /backend/services/iot-manager
- /backend/services/reporting
- /backend/services/useradm
- /backend/services/workflows
package-ecosystem: docker
schedule:
interval: monthly
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ variables:
value: "v1.16.1"
description: "Version of skopeo to use for publishing images"
GOLANG_VERSION:
value: "1.23.2"
value: "1.23.4"
description: "Version of Golang to use in jobs"
IMAGE_GOLANGCI_VERSION:
value: "v1.60"
2 changes: 1 addition & 1 deletion backend/services/deployments/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23.1 AS builder
FROM --platform=$BUILDPLATFORM golang:1.23.4 AS builder

ARG BUILDFLAGS="-tags nopkcs11 -trimpath"
ARG LDFLAGS="-s -w"
2 changes: 1 addition & 1 deletion backend/services/deviceauth/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23.1 AS builder
FROM --platform=$BUILDPLATFORM golang:1.23.4 AS builder
ARG TARGETOS
ARG TARGETARCH
ARG LDFLAGS="-s -w"
2 changes: 1 addition & 1 deletion backend/services/deviceconfig/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23.1 AS builder
FROM --platform=$BUILDPLATFORM golang:1.23.4 AS builder
ARG TARGETOS
ARG TARGETARCH
ARG LDFLAGS="-s -w"
2 changes: 1 addition & 1 deletion backend/services/deviceconnect/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23.1 AS builder
FROM --platform=$BUILDPLATFORM golang:1.23.4 AS builder
ARG TARGETOS
ARG TARGETARCH
ARG LDFLAGS="-s -w"
2 changes: 1 addition & 1 deletion backend/services/inventory/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23.1 AS builder
FROM --platform=$BUILDPLATFORM golang:1.23.4 AS builder

ARG BUILDFLAGS="-trimpath"
ARG LDFLAGS="-s -w"
2 changes: 1 addition & 1 deletion backend/services/reporting/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23.1 AS builder
FROM --platform=$BUILDPLATFORM golang:1.23.4 AS builder

ARG BUILDFLAGS="-trimpath"
ARG LDFLAGS="-s -w"
2 changes: 1 addition & 1 deletion backend/services/useradm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23.1 AS builder
FROM --platform=$BUILDPLATFORM golang:1.23.4 AS builder

ARG BUILDFLAGS="-trimpath"
ARG LDFLAGS="-s -w"
2 changes: 1 addition & 1 deletion backend/services/workflows/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.23.1 AS builder
FROM --platform=$BUILDPLATFORM golang:1.23.4 AS builder

ARG BUILDFLAGS="-trimpath"
ARG LDFLAGS="-s -w"

0 comments on commit 70619af

Please sign in to comment.