Skip to content

Commit 6ee39e1

Browse files
committed
go: bumped to v1.19 & upgraded all deps
1 parent 4b0d961 commit 6ee39e1

File tree

5 files changed

+122
-125
lines changed

5 files changed

+122
-125
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Set up Go
5757
uses: actions/setup-go@v2
5858
with:
59-
go-version: 1.18
59+
go-version: 1.19
6060

6161
- name: Import GPG key
6262
uses: crazy-max/ghaction-import-gpg@v3
@@ -67,7 +67,7 @@ jobs:
6767
- name: Install goreleaser
6868
uses: goreleaser/goreleaser-action@v2
6969
with:
70-
version: v1.8.3
70+
version: v1.10.3
7171
install-only: true
7272

7373
- name: Run goreleaser

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
strategy:
1717
matrix:
1818
os:
19-
- ubuntu-20.04
20-
- macos-11.0
19+
- ubuntu-22.04
20+
- macos-12
2121
- windows-2022
2222

2323
runs-on: ${{ matrix.os }}
@@ -29,18 +29,18 @@ jobs:
2929
- name: Install Go
3030
uses: actions/setup-go@v2
3131
with:
32-
go-version: 1.18
32+
go-version: 1.19
3333

3434
- name: Lint
35-
if: ${{ matrix.os == 'ubuntu-20.04' }}
35+
if: ${{ matrix.os == 'ubuntu-22.04' }}
3636
run: make lint
3737

3838
- name: Test
3939
run: make coverage
4040

4141
- name: Publish coverage to coveralls.io
4242
uses: shogo82148/actions-goveralls@v1
43-
if: ${{ matrix.os == 'ubuntu-20.04' }}
43+
if: ${{ matrix.os == 'ubuntu-22.04' }}
4444
with:
4545
path-to-profile: coverage.out
4646

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# BUILD CONTAINER
33
##
44

5-
FROM alpine:3.16.0 as certs
5+
FROM alpine:3.16 as certs
66

77
RUN \
88
apk add --no-cache ca-certificates
@@ -11,7 +11,7 @@ apk add --no-cache ca-certificates
1111
# RELEASE CONTAINER
1212
##
1313

14-
FROM busybox:1.35.0-glibc
14+
FROM busybox:1.35-glibc
1515

1616
WORKDIR /
1717

go.mod

Lines changed: 38 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module github.com/mvisonneau/gitlab-ci-pipelines-exporter
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/alicebob/miniredis/v2 v2.20.0
7-
github.com/charmbracelet/bubbles v0.12.0
8-
github.com/charmbracelet/bubbletea v0.22.0
7+
github.com/charmbracelet/bubbles v0.13.0
8+
github.com/charmbracelet/bubbletea v0.22.1
99
github.com/charmbracelet/lipgloss v0.5.0
1010
github.com/creasty/defaults v1.6.0
1111
github.com/go-playground/validator/v10 v10.11.0
@@ -19,24 +19,24 @@ require (
1919
github.com/openlyinc/pointy v1.1.2
2020
github.com/paulbellamy/ratecounter v0.2.0
2121
github.com/pkg/errors v0.9.1
22-
github.com/prometheus/client_golang v1.12.2
23-
github.com/sirupsen/logrus v1.8.1
24-
github.com/stretchr/testify v1.7.5
25-
github.com/uptrace/opentelemetry-go-extra/otellogrus v0.1.14
26-
github.com/urfave/cli/v2 v2.10.3
22+
github.com/prometheus/client_golang v1.13.0
23+
github.com/sirupsen/logrus v1.9.0
24+
github.com/stretchr/testify v1.8.0
25+
github.com/uptrace/opentelemetry-go-extra/otellogrus v0.1.15
26+
github.com/urfave/cli/v2 v2.11.2
2727
github.com/vmihailenco/msgpack/v5 v5.3.5
28-
github.com/vmihailenco/taskq/v3 v3.2.8
29-
github.com/xanzy/go-gitlab v0.68.2
28+
github.com/vmihailenco/taskq/v3 v3.2.9
29+
github.com/xanzy/go-gitlab v0.73.1
3030
github.com/xeonx/timeago v1.0.0-rc5
31-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.32.0
32-
go.opentelemetry.io/otel v1.7.0
33-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.7.0
34-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.7.0
35-
go.opentelemetry.io/otel/sdk v1.7.0
36-
go.opentelemetry.io/otel/trace v1.7.0
31+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.34.0
32+
go.opentelemetry.io/otel v1.9.0
33+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.9.0
34+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.9.0
35+
go.opentelemetry.io/otel/sdk v1.9.0
36+
go.opentelemetry.io/otel/trace v1.9.0
3737
go.uber.org/ratelimit v0.2.0
38-
google.golang.org/grpc v1.47.0
39-
google.golang.org/protobuf v1.28.0
38+
google.golang.org/grpc v1.49.0
39+
google.golang.org/protobuf v1.28.1
4040
gopkg.in/yaml.v3 v3.0.1
4141
)
4242

@@ -62,43 +62,45 @@ require (
6262
github.com/go-redis/redis/extra/rediscmd/v8 v8.11.5 // indirect
6363
github.com/golang/protobuf v1.5.2 // indirect
6464
github.com/google/go-querystring v1.1.0 // indirect
65-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.10.3 // indirect
65+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect
6666
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
6767
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
6868
github.com/hashicorp/golang-lru v0.5.4 // indirect
69-
github.com/klauspost/compress v1.15.7 // indirect
69+
github.com/klauspost/compress v1.15.9 // indirect
7070
github.com/leodido/go-urn v1.2.1 // indirect
7171
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
72-
github.com/mattn/go-isatty v0.0.14 // indirect
72+
github.com/mattn/go-isatty v0.0.16 // indirect
73+
github.com/mattn/go-localereader v0.0.1 // indirect
7374
github.com/mattn/go-runewidth v0.0.13 // indirect
7475
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
7576
github.com/muesli/ansi v0.0.0-20211031195517-c9f0611b6c70 // indirect
7677
github.com/muesli/cancelreader v0.2.2 // indirect
7778
github.com/muesli/reflow v0.3.0 // indirect
7879
github.com/muesli/termenv v0.12.0 // indirect
80+
github.com/onsi/gomega v1.20.0 // indirect
7981
github.com/pmezard/go-difflib v1.0.0 // indirect
8082
github.com/prometheus/client_model v0.2.0 // indirect
81-
github.com/prometheus/common v0.35.0 // indirect
82-
github.com/prometheus/procfs v0.7.3 // indirect
83-
github.com/rivo/uniseg v0.2.0 // indirect
83+
github.com/prometheus/common v0.37.0 // indirect
84+
github.com/prometheus/procfs v0.8.0 // indirect
85+
github.com/rivo/uniseg v0.3.4 // indirect
8486
github.com/russross/blackfriday/v2 v2.1.0 // indirect
85-
github.com/uptrace/opentelemetry-go-extra/otelutil v0.1.14 // indirect
87+
github.com/uptrace/opentelemetry-go-extra/otelutil v0.1.15 // indirect
8688
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
8789
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
8890
github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9 // indirect
89-
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.7.0 // indirect
90-
go.opentelemetry.io/otel/metric v0.30.0 // indirect
91-
go.opentelemetry.io/proto/otlp v0.18.0 // indirect
92-
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
93-
golang.org/x/net v0.0.0-20220630215102-69896b714898 // indirect
94-
golang.org/x/oauth2 v0.0.0-20220630143837-2104d58473e0 // indirect
95-
golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e // indirect
96-
golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect
91+
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.9.0 // indirect
92+
go.opentelemetry.io/otel/metric v0.31.0 // indirect
93+
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
94+
golang.org/x/crypto v0.0.0-20220824171710-5757bc0c5503 // indirect
95+
golang.org/x/net v0.0.0-20220822230855-b0a4917ee28c // indirect
96+
golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094 // indirect
97+
golang.org/x/sys v0.0.0-20220823224334-20c2bfdbfe24 // indirect
98+
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
9799
golang.org/x/text v0.3.7 // indirect
98-
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
100+
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
99101
google.golang.org/appengine v1.6.7 // indirect
100-
google.golang.org/genproto v0.0.0-20220630174209-ad1d48641aa7 // indirect
102+
google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc // indirect
101103
gopkg.in/DATA-DOG/go-sqlmock.v1 v1.3.0 // indirect
102104
)
103105

104-
replace github.com/vmihailenco/taskq/v3 => github.com/mvisonneau/taskq/v3 v3.2.4-0.20220317203606-c903565cde04
106+
replace github.com/vmihailenco/taskq/v3 => github.com/mvisonneau/taskq/v3 v3.2.9-0.20220825072553-a973dd7a133a

0 commit comments

Comments
 (0)