Skip to content
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
6 changes: 3 additions & 3 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ steps:
image: docker.io/mstruebing/editorconfig-checker

- name: lint-golang
image: docker.io/golang:1.22
image: docker.io/golang:1.25
commands:
- make lint
volumes:
- name: godeps
path: /go

- name: test
image: docker.io/golang:1.22
image: docker.io/golang:1.25
commands:
- make test
volumes:
Expand Down Expand Up @@ -54,7 +54,7 @@ steps:
- make release

- name: executable
image: docker.io/golang:1.22
image: docker.io/golang:1.25
commands:
- $(find dist/ -executable -type f -iname ${DRONE_REPO_NAME}-linux-amd64) --help

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.multiarch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM docker.io/golang:1.22@sha256:f43c6f049f04cbbaeb28f0aad3eea15274a7d0a7899a617d0037aec48d7ab010 as build
FROM --platform=$BUILDPLATFORM docker.io/golang:1.25@sha256:8bbd14091f2c61916134fa6aeb8f76b18693fcb29a39ec6d8be9242c0a7e9260 as build

ARG TARGETOS
ARG TARGETARCH
Expand Down