diff --git a/.drone.yml b/.drone.yml index 2f4eeec..2c79bdc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,7 @@ pool: steps: - name: lint - image: golang:1.22.4 + image: golang:1.23.0 pull: always commands: - go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.51.2 @@ -19,7 +19,7 @@ steps: - name: gopath path: "/go" - name: test - image: golang:1.22.4 + image: golang:1.23.0 commands: - go test -cover ./... volumes: @@ -46,7 +46,7 @@ pool: steps: - name: environment - image: golang:1.22.4 + image: golang:1.23.0 pull: always environment: CGO_ENABLED: "0" @@ -54,7 +54,7 @@ steps: - go version - go env - name: build - image: golang:1.22.4 + image: golang:1.23.0 environment: CGO_ENABLED: "0" commands: @@ -90,7 +90,7 @@ pool: steps: - name: environment - image: golang:1.22.4 + image: golang:1.23.0 pull: always environment: CGO_ENABLED: "0" @@ -98,7 +98,7 @@ steps: - go version - go env - name: build - image: golang:1.22.4 + image: golang:1.23.0 environment: CGO_ENABLED: "0" commands: @@ -134,7 +134,7 @@ pool: steps: - name: environment - image: golang:1.22.4 + image: golang:1.23.0 pull: always environment: CGO_ENABLED: "0" @@ -142,7 +142,7 @@ steps: - go version - go env - name: build - image: golang:1.22.4 + image: golang:1.23.0 environment: CGO_ENABLED: "0" commands: @@ -184,7 +184,7 @@ pool: steps: - name: environment - image: golang:1.22.4 + image: golang:1.23.0 pull: always environment: CGO_ENABLED: "0" @@ -192,7 +192,7 @@ steps: - go version - go env - name: build - image: golang:1.22.4 + image: golang:1.23.0 environment: CGO_ENABLED: "0" commands: @@ -264,7 +264,7 @@ pool: steps: - name: build pull: always - image: golang:1.22.4 + image: golang:1.23.0 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 diff --git a/go.mod b/go.mod index bfdadb0..b094368 100644 --- a/go.mod +++ b/go.mod @@ -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 (