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
22 changes: 11 additions & 11 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pool:

steps:
- name: lint
image: golang:1.22.4
image: golang:1.23.1
pull: always
commands:
- go install github.com/golangci/golangci-lint/cmd/[email protected]
Expand All @@ -19,7 +19,7 @@ steps:
- name: gopath
path: "/go"
- name: test
image: golang:1.22.4
image: golang:1.23.1
commands:
- go test -cover ./...
volumes:
Expand All @@ -46,15 +46,15 @@ pool:

steps:
- name: environment
image: golang:1.22.4
image: golang:1.23.1
pull: always
environment:
CGO_ENABLED: "0"
commands:
- go version
- go env
- name: build
image: golang:1.22.4
image: golang:1.23.1
environment:
CGO_ENABLED: "0"
commands:
Expand Down Expand Up @@ -90,15 +90,15 @@ pool:

steps:
- name: environment
image: golang:1.22.4
image: golang:1.23.1
pull: always
environment:
CGO_ENABLED: "0"
commands:
- go version
- go env
- name: build
image: golang:1.22.4
image: golang:1.23.1
environment:
CGO_ENABLED: "0"
commands:
Expand Down Expand Up @@ -134,15 +134,15 @@ pool:

steps:
- name: environment
image: golang:1.22.4
image: golang:1.23.1
pull: always
environment:
CGO_ENABLED: "0"
commands:
- go version
- go env
- name: build
image: golang:1.22.4
image: golang:1.23.1
environment:
CGO_ENABLED: "0"
commands:
Expand Down Expand Up @@ -184,15 +184,15 @@ pool:

steps:
- name: environment
image: golang:1.22.4
image: golang:1.23.1
pull: always
environment:
CGO_ENABLED: "0"
commands:
- go version
- go env
- name: build
image: golang:1.22.4
image: golang:1.23.1
environment:
CGO_ENABLED: "0"
commands:
Expand Down Expand Up @@ -264,7 +264,7 @@ pool:
steps:
- name: build
pull: always
image: golang:1.22.4
image: golang:1.23.1
commands:
- GOOS=linux GOARCH=amd64 go build -ldflags "-s -w" -a -tags netgo -o release/drone-s3-linux-amd64
- GOOS=linux GOARCH=arm64 go build -ldflags "-s -w" -a -tags netgo -o release/drone-s3-linux-arm64
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module github.com/drone-plugins/drone-s3

go 1.22.4
go 1.23.4

require (
github.com/aws/aws-sdk-go v1.44.156
github.com/joho/godotenv v1.4.0
github.com/mattn/go-zglob v0.0.4
github.com/sirupsen/logrus v1.9.0
github.com/urfave/cli v1.22.10
github.com/urfave/cli v1.23.10
)

require (
Expand Down