Skip to content

Commit 713ef8b

Browse files
authored
Merge pull request #151 from drone-plugins/scheduled_go_upgrade2024-03-04_08-03-22
Update go Version in all files
2 parents 3bc7f8e + e5cd68e commit 713ef8b

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.drone.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pool:
99

1010
steps:
1111
- name: lint
12-
image: golang:1.21
12+
image: golang:1.22
1313
pull: always
1414
commands:
1515
- go install github.com/golangci/golangci-lint/cmd/[email protected]
@@ -19,7 +19,7 @@ steps:
1919
- name: gopath
2020
path: "/go"
2121
- name: test
22-
image: golang:1.21
22+
image: golang:1.22
2323
commands:
2424
- go test -cover ./...
2525
volumes:
@@ -46,15 +46,15 @@ pool:
4646

4747
steps:
4848
- name: environment
49-
image: golang:1.21
49+
image: golang:1.22
5050
pull: always
5151
environment:
5252
CGO_ENABLED: "0"
5353
commands:
5454
- go version
5555
- go env
5656
- name: build
57-
image: golang:1.21
57+
image: golang:1.22
5858
environment:
5959
CGO_ENABLED: "0"
6060
commands:
@@ -90,15 +90,15 @@ pool:
9090

9191
steps:
9292
- name: environment
93-
image: golang:1.21
93+
image: golang:1.22
9494
pull: always
9595
environment:
9696
CGO_ENABLED: "0"
9797
commands:
9898
- go version
9999
- go env
100100
- name: build
101-
image: golang:1.21
101+
image: golang:1.22
102102
environment:
103103
CGO_ENABLED: "0"
104104
commands:
@@ -134,15 +134,15 @@ pool:
134134

135135
steps:
136136
- name: environment
137-
image: golang:1.21
137+
image: golang:1.22
138138
pull: always
139139
environment:
140140
CGO_ENABLED: "0"
141141
commands:
142142
- go version
143143
- go env
144144
- name: build
145-
image: golang:1.21
145+
image: golang:1.22
146146
environment:
147147
CGO_ENABLED: "0"
148148
commands:
@@ -184,15 +184,15 @@ pool:
184184

185185
steps:
186186
- name: environment
187-
image: golang:1.21
187+
image: golang:1.22
188188
pull: always
189189
environment:
190190
CGO_ENABLED: "0"
191191
commands:
192192
- go version
193193
- go env
194194
- name: build
195-
image: golang:1.21
195+
image: golang:1.22
196196
environment:
197197
CGO_ENABLED: "0"
198198
commands:
@@ -264,7 +264,7 @@ pool:
264264
steps:
265265
- name: build
266266
pull: always
267-
image: golang:1.21
267+
image: golang:1.22
268268
commands:
269269
- GOOS=linux GOARCH=amd64 go build -ldflags "-s -w" -a -tags netgo -o release/drone-s3-linux-amd64
270270
- GOOS=linux GOARCH=arm64 go build -ldflags "-s -w" -a -tags netgo -o release/drone-s3-linux-arm64

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/drone-plugins/drone-s3
22

3-
go 1.21
3+
go 1.22
44

55
require (
66
github.com/aws/aws-sdk-go v1.44.156

0 commit comments

Comments
 (0)