Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

Commit d6f552c

Browse files
authored
chore: switch to go1.19 (#121)
1 parent 069e4ae commit d6f552c

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.drone.jsonnet

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local PipelineTest = {
88
steps: [
99
{
1010
name: 'deps',
11-
image: 'golang:1.18',
11+
image: 'golang:1.19',
1212
commands: [
1313
'make deps',
1414
],
@@ -21,7 +21,7 @@ local PipelineTest = {
2121
},
2222
{
2323
name: 'lint',
24-
image: 'golang:1.18',
24+
image: 'golang:1.19',
2525
commands: [
2626
'make lint',
2727
],
@@ -34,7 +34,7 @@ local PipelineTest = {
3434
},
3535
{
3636
name: 'test',
37-
image: 'golang:1.18',
37+
image: 'golang:1.19',
3838
commands: [
3939
'make test',
4040
],
@@ -68,7 +68,7 @@ local PipelineBuildBinaries = {
6868
steps: [
6969
{
7070
name: 'build',
71-
image: 'techknowlogick/xgo:go-1.18.x',
71+
image: 'techknowlogick/xgo:go-1.19.x',
7272
commands: [
7373
'make release',
7474
],
@@ -133,7 +133,7 @@ local PipelineBuildContainer(arch='amd64') = {
133133
steps: [
134134
{
135135
name: 'build',
136-
image: 'golang:1.18',
136+
image: 'golang:1.19',
137137
commands: [
138138
'make build',
139139
],

.drone.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ platform:
88

99
steps:
1010
- name: deps
11-
image: golang:1.18
11+
image: golang:1.19
1212
commands:
1313
- make deps
1414
volumes:
1515
- name: godeps
1616
path: /go
1717

1818
- name: lint
19-
image: golang:1.18
19+
image: golang:1.19
2020
commands:
2121
- make lint
2222
volumes:
2323
- name: godeps
2424
path: /go
2525

2626
- name: test
27-
image: golang:1.18
27+
image: golang:1.19
2828
commands:
2929
- make test
3030
volumes:
@@ -51,7 +51,7 @@ platform:
5151

5252
steps:
5353
- name: build
54-
image: techknowlogick/xgo:go-1.18.x
54+
image: techknowlogick/xgo:go-1.19.x
5555
commands:
5656
- make release
5757

@@ -105,7 +105,7 @@ platform:
105105

106106
steps:
107107
- name: build
108-
image: golang:1.18
108+
image: golang:1.19
109109
commands:
110110
- make build
111111

@@ -177,7 +177,7 @@ platform:
177177

178178
steps:
179179
- name: build
180-
image: golang:1.18
180+
image: golang:1.19
181181
commands:
182182
- make build
183183

@@ -380,6 +380,6 @@ depends_on:
380380

381381
---
382382
kind: signature
383-
hmac: 42ea59f6cce008de2797e676cc2c4e2fa5abb49f280ede4e600f4d821e0f0ea9
383+
hmac: b3fcec8e8669cb90bbf5cf5e17db99f2b3b813f117a69f43045cefbb59c5c862
384384

385385
...

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/cmd/golangci-lint@$(G
1919
XGO_PACKAGE ?= src.techknowlogick.com/xgo@latest
2020

2121
GENERATE ?=
22-
XGO_VERSION := go-1.18.x
22+
XGO_VERSION := go-1.19.x
2323
XGO_TARGETS ?= linux/amd64,linux/arm-6,linux/arm-7,linux/arm64
2424

2525
TAGS ?= netgo

go.mod

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

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/coreos/go-semver v0.3.0

0 commit comments

Comments
 (0)