Skip to content
Merged
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
22 changes: 12 additions & 10 deletions .harness/harness.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pipeline:
name: Vet
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.24.11
image: golang:1.26
shell: Sh
command: go vet ./...
- step:
Expand All @@ -42,7 +42,7 @@ pipeline:
name: Test
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.24.11
image: golang:1.26
shell: Sh
command: go test -cover ./...
- parallel:
Expand Down Expand Up @@ -70,7 +70,7 @@ pipeline:
name: Build Binary
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.24.11
image: golang:1.26
shell: Sh
command: |-
# force go modules
Expand Down Expand Up @@ -150,7 +150,7 @@ pipeline:
name: Build Binary
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.24.11
image: golang:1.26
shell: Sh
command: |-
# force go modules
Expand Down Expand Up @@ -230,7 +230,7 @@ pipeline:
name: Build Binary
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.24.11
image: golang:1.26
shell: Sh
command: |-
# force go modules
Expand Down Expand Up @@ -310,7 +310,7 @@ pipeline:
name: Build Binary
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.24.11
image: golang:1.26
shell: Sh
command: |-
# force go modules
Expand Down Expand Up @@ -399,7 +399,9 @@ pipeline:
# linux
GOOS=windows

go build -o release/windows/amd64/drone-docker.exe ./cmd/drone-docker
go build -buildvcs=false -o release/windows/amd64/drone-docker.exe ./cmd/drone-docker
envVariables:
GOTOOLCHAIN: go1.26.0
- step:
type: Plugin
name: Build and Push on Tag
Expand Down Expand Up @@ -468,7 +470,7 @@ pipeline:
name: Build Binary
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.23.0
image: golang:1.26
shell: Sh
command: |-
# force go modules
Expand All @@ -483,7 +485,7 @@ pipeline:
# windows
GOOS=windows

go build -o release/windows/amd64/drone-docker.exe ./cmd/drone-docker
go build -buildvcs=false -o release/windows/amd64/drone-docker.exe ./cmd/drone-docker
- step:
type: Plugin
name: Build and Push on Tag
Expand Down Expand Up @@ -555,7 +557,7 @@ pipeline:
name: Build Binaries
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.24.11
image: golang:1.26
shell: Sh
command: |-
GOOS=linux GOARCH=amd64 go build -ldflags "-s -w" -a -tags netgo -o release/drone-buildx-linux-amd64 ./cmd/drone-docker
Expand Down
2 changes: 1 addition & 1 deletion docker/docker/Dockerfile.linux.amd64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker:28.1.1-dind
FROM docker:29.3.1-dind
Comment thread
abhay084 marked this conversation as resolved.

ENV DOCKER_HOST=unix:///var/run/docker.sock

Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,4 @@ require (
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)

go 1.24.11

toolchain go1.25.5
go 1.26