Skip to content

Commit 036a83f

Browse files
author
TP Honey
authored
Merge pull request #40 from tphoney/use_correct_arm_runner
(fix) use correct arm runner
2 parents 1c2f308 + b04de20 commit 036a83f

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.19
12+
image: golang:1.20
1313
pull: always
1414
commands:
1515
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
@@ -19,7 +19,7 @@ steps:
1919
- name: gopath
2020
path: "/go"
2121
- name: test
22-
image: golang:1.19
22+
image: golang:1.20
2323
commands:
2424
- go test -cover ./...
2525
volumes:
@@ -46,15 +46,15 @@ pool:
4646

4747
steps:
4848
- name: environment
49-
image: golang:1.19
49+
image: golang:1.20
5050
pull: always
5151
environment:
5252
CGO_ENABLED: '0'
5353
commands:
5454
- go version
5555
- go env
5656
- name: build
57-
image: golang:1.19
57+
image: golang:1.20
5858
environment:
5959
CGO_ENABLED: '0'
6060
commands:
@@ -80,7 +80,7 @@ trigger:
8080

8181
---
8282
kind: pipeline
83-
type: docker
83+
type: vm
8484
name: linux-arm64
8585
platform:
8686
os: linux
@@ -90,15 +90,15 @@ pool:
9090

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

135135
steps:
136136
- name: environment
137-
image: golang:1.19
137+
image: golang:1.20
138138
pull: always
139139
environment:
140140
CGO_ENABLED: '0'
141141
commands:
142142
- go version
143143
- go env
144144
- name: build
145-
image: golang:1.19
145+
image: golang:1.20
146146
environment:
147147
CGO_ENABLED: '0'
148148
commands:
@@ -185,15 +185,15 @@ pool:
185185

186186
steps:
187187
- name: environment
188-
image: golang:1.19
188+
image: golang:1.20
189189
pull: always
190190
environment:
191191
CGO_ENABLED: '0'
192192
commands:
193193
- go version
194194
- go env
195195
- name: build
196-
image: golang:1.19
196+
image: golang:1.20
197197
environment:
198198
CGO_ENABLED: '0'
199199
commands:

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-download
22

3-
go 1.18
3+
go 1.20
44

55
require (
66
github.com/drone-plugins/drone-plugin-lib v0.4.0

0 commit comments

Comments
 (0)