chore: switch to go1.19 (#37)

This commit is contained in:
Robert Kaussow 2022-08-05 13:18:27 +02:00 committed by GitHub
parent 255fd776c6
commit ea23877b4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 11 deletions

View File

@ -8,7 +8,7 @@ local PipelineTest = {
steps: [ steps: [
{ {
name: 'deps', name: 'deps',
image: 'golang:1.18', image: 'golang:1.19',
commands: [ commands: [
'make deps', 'make deps',
], ],
@ -21,7 +21,7 @@ local PipelineTest = {
}, },
{ {
name: 'lint', name: 'lint',
image: 'golang:1.18', image: 'golang:1.19',
commands: [ commands: [
'make lint', 'make lint',
], ],
@ -34,7 +34,7 @@ local PipelineTest = {
}, },
{ {
name: 'test', name: 'test',
image: 'golang:1.18', image: 'golang:1.19',
commands: [ commands: [
'make test', 'make test',
], ],
@ -80,7 +80,7 @@ local PipelineBuildBinaries = {
steps: [ steps: [
{ {
name: 'build', name: 'build',
image: 'techknowlogick/xgo:go-1.18.x', image: 'techknowlogick/xgo:go-1.19.x',
commands: [ commands: [
'make release', 'make release',
], ],

View File

@ -8,7 +8,7 @@ platform:
steps: steps:
- name: deps - name: deps
image: golang:1.18 image: golang:1.19
commands: commands:
- make deps - make deps
volumes: volumes:
@ -16,7 +16,7 @@ steps:
path: /go path: /go
- name: lint - name: lint
image: golang:1.18 image: golang:1.19
commands: commands:
- make lint - make lint
volumes: volumes:
@ -24,7 +24,7 @@ steps:
path: /go path: /go
- name: test - name: test
image: golang:1.18 image: golang:1.19
commands: commands:
- make test - make test
volumes: volumes:
@ -59,7 +59,7 @@ platform:
steps: steps:
- name: build - name: build
image: techknowlogick/xgo:go-1.18.x image: techknowlogick/xgo:go-1.19.x
commands: commands:
- make release - make release
@ -142,6 +142,6 @@ depends_on:
--- ---
kind: signature kind: signature
hmac: abe0019dfa9264a9509adaaa988e75b60d344269a70b699568bf0615035ecd6a hmac: 7b57366e668a7949629efd424ba0b8a4483c959dea819dcd0ec7f001763cfcb4
... ...

View File

@ -19,7 +19,7 @@ GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/cmd/golangci-lint@$(G
XGO_PACKAGE ?= src.techknowlogick.com/xgo@latest XGO_PACKAGE ?= src.techknowlogick.com/xgo@latest
GENERATE ?= GENERATE ?=
XGO_VERSION := go-1.18.x XGO_VERSION := go-1.19.x
XGO_TARGETS ?= linux/amd64,linux/arm-6,linux/arm-7,linux/arm64 XGO_TARGETS ?= linux/amd64,linux/arm-6,linux/arm-7,linux/arm64
TAGS ?= netgo TAGS ?= netgo

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/thegeeklab/url-parser module github.com/thegeeklab/url-parser
go 1.18 go 1.19
require ( require (
github.com/sirupsen/logrus v1.9.0 github.com/sirupsen/logrus v1.9.0