Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update golang version #145

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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 .woodpecker/build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ when:

steps:
- name: build
image: docker.io/techknowlogick/xgo:go-1.23.6
image: docker.io/techknowlogick/xgo:go-1.24.0
commands:
- ln -s $(pwd) /source
- make release
Expand Down
4 changes: 2 additions & 2 deletions .woodpecker/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ when:

steps:
- name: lint
image: docker.io/library/golang:1.23.6
image: docker.io/library/golang:1.24.0
commands:
- make lint

- name: test
image: docker.io/library/golang:1.23.6
image: docker.io/library/golang:1.24.0
commands:
- make test
2 changes: 1 addition & 1 deletion Containerfile.multiarch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.23.6@sha256:77a21b3e354c03e9f66b13bc39f4f0db8085c70f8414406af66b29c6d6c4dd85 AS build
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.24.0@sha256:2b1cbf278ce05a2a310a3d695ebb176420117a8cfcfcc4e5e68a1bef5f6354da AS build

ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ GOFUMPT_PACKAGE_VERSION := v0.7.0
# renovate: datasource=github-releases depName=golangci/golangci-lint
GOLANGCI_LINT_PACKAGE_VERSION := v1.64.4
# renovate: datasource=docker depName=docker.io/techknowlogick/xgo
XGO_PACKAGE_VERSION := go-1.23.6
XGO_PACKAGE_VERSION := go-1.24.0

EXECUTABLE := wp-opentofu

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/thegeeklab/wp-opentofu

go 1.23.6
go 1.24.0

require (
github.com/Masterminds/semver/v3 v3.3.1
Expand Down