Skip to content

Commit

Permalink
Merge pull request #40 from tphoney/use_correct_arm_runner
Browse files Browse the repository at this point in the history
(fix) use correct arm runner
  • Loading branch information
TP Honey authored Sep 15, 2023
2 parents 1c2f308 + b04de20 commit 036a83f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
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.19
image: golang:1.20
pull: always
commands:
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
Expand All @@ -19,7 +19,7 @@ steps:
- name: gopath
path: "/go"
- name: test
image: golang:1.19
image: golang:1.20
commands:
- go test -cover ./...
volumes:
Expand All @@ -46,15 +46,15 @@ pool:

steps:
- name: environment
image: golang:1.19
image: golang:1.20
pull: always
environment:
CGO_ENABLED: '0'
commands:
- go version
- go env
- name: build
image: golang:1.19
image: golang:1.20
environment:
CGO_ENABLED: '0'
commands:
Expand All @@ -80,7 +80,7 @@ trigger:

---
kind: pipeline
type: docker
type: vm
name: linux-arm64
platform:
os: linux
Expand All @@ -90,15 +90,15 @@ pool:

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

steps:
- name: environment
image: golang:1.19
image: golang:1.20
pull: always
environment:
CGO_ENABLED: '0'
commands:
- go version
- go env
- name: build
image: golang:1.19
image: golang:1.20
environment:
CGO_ENABLED: '0'
commands:
Expand Down Expand Up @@ -185,15 +185,15 @@ pool:

steps:
- name: environment
image: golang:1.19
image: golang:1.20
pull: always
environment:
CGO_ENABLED: '0'
commands:
- go version
- go env
- name: build
image: golang:1.19
image: golang:1.20
environment:
CGO_ENABLED: '0'
commands:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/drone-plugins/drone-download

go 1.18
go 1.20

require (
github.com/drone-plugins/drone-plugin-lib v0.4.0
Expand Down

0 comments on commit 036a83f

Please sign in to comment.