Skip to content

Commit ceca3a4

Browse files
author
TP Honey
authored
Merge pull request #38 from tphoney/harness_move
(maint) move to harness.drone.io
2 parents b97eb57 + c863bac commit ceca3a4

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.drone.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
---
22
kind: pipeline
3-
type: docker
3+
type: vm
44
name: testing
55

66
platform:
77
os: linux
88
arch: amd64
99

10+
pool:
11+
use: ubuntu
12+
1013
steps:
1114
- name: staticcheck
1215
pull: always
13-
image: golang:1.18
16+
image: golang:1.19
1417
commands:
1518
- go get honnef.co/go/tools/cmd/staticcheck
1619
- go run honnef.co/go/tools/cmd/staticcheck ./...
@@ -20,7 +23,7 @@ steps:
2023

2124
- name: lint
2225
pull: always
23-
image: golang:1.18
26+
image: golang:1.19
2427
commands:
2528
- go get golang.org/x/lint/golint
2629
- go run golang.org/x/lint/golint -set_exit_status ./...
@@ -30,7 +33,7 @@ steps:
3033

3134
- name: vet
3235
pull: always
33-
image: golang:1.18
36+
image: golang:1.19
3437
commands:
3538
- go vet ./...
3639
volumes:
@@ -39,7 +42,7 @@ steps:
3942

4043
- name: test
4144
pull: always
42-
image: golang:1.18
45+
image: golang:1.19
4346
commands:
4447
- go test -cover -v ./...
4548
volumes:

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/drone-plugins/drone-plugin-lib
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/sirupsen/logrus v1.9.0
7-
github.com/urfave/cli/v2 v2.11.1
7+
github.com/urfave/cli/v2 v2.23.5
88
)
99

1010
require (

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5Cc
1414
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
1515
github.com/urfave/cli/v2 v2.11.1 h1:UKK6SP7fV3eKOefbS87iT9YHefv7iB/53ih6e+GNAsE=
1616
github.com/urfave/cli/v2 v2.11.1/go.mod h1:f8iq5LtQ/bLxafbdBSLPPNsgaW0l/2fYYEHhAyPlwvo=
17+
github.com/urfave/cli/v2 v2.23.5 h1:xbrU7tAYviSpqeR3X4nEFWUdB/uDZ6DE+HxmRU7Xtyw=
18+
github.com/urfave/cli/v2 v2.23.5/go.mod h1:GHupkWPMM0M/sj1a2b4wUrWBPzazNrIjouW6fmdJLxc=
1719
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 h1:bAn7/zixMGCfxrRTfdpNzjtPYqr8smhKouy9mxVdGPU=
1820
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673/go.mod h1:N3UwUGtsrSj3ccvlPHLoLsHnpR27oXr4ZE984MbSER8=
1921
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=

0 commit comments

Comments
 (0)