Skip to content

Commit b2c7cb1

Browse files
committed
Bump golang.org/x/sync from 0.11.0 to 0.12.0 and update go version
1 parent 151a904 commit b2c7cb1

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/ci.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
platform: [ubuntu-latest, macos-latest, windows-latest]
88
runs-on: ${{ matrix.platform }}
99
steps:
10-
- uses: actions/checkout@v2
11-
- uses: actions/setup-go@v2
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-go@v5
1212
with:
1313
go-version: 1.x
1414
- run: make lint
@@ -39,8 +39,8 @@ jobs:
3939
runs-on: ${{ matrix.platform }}
4040
needs: release
4141
steps:
42-
- uses: actions/checkout@v2
43-
- uses: actions/setup-go@v2
42+
- uses: actions/checkout@v4
43+
- uses: actions/setup-go@v5
4444
with:
4545
go-version: 1.x
4646
- run: echo "APP_VERSION=$(git describe --tags --abbrev=0 | sed -e 's/^v//')" >> $GITHUB_ENV
@@ -66,7 +66,7 @@ jobs:
6666
contents: read
6767
packages: write
6868
steps:
69-
- uses: actions/checkout@v2
69+
- uses: actions/checkout@v4
7070
- uses: docker/login-action@v1
7171
with:
7272
registry: ghcr.io

go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/fastly/fastly-exporter
22

3-
go 1.21
3+
go 1.23.0
44

55
require (
66
github.com/cespare/xxhash v1.1.0
@@ -11,7 +11,7 @@ require (
1111
github.com/oklog/run v1.1.0
1212
github.com/peterbourgon/ff/v3 v3.4.0
1313
github.com/prometheus/client_golang v1.21.1
14-
golang.org/x/sync v0.11.0
14+
golang.org/x/sync v0.12.0
1515
)
1616

1717
require (
@@ -27,6 +27,6 @@ require (
2727
github.com/prometheus/common v0.62.0 // indirect
2828
github.com/prometheus/procfs v0.15.1 // indirect
2929
github.com/spaolacci/murmur3 v1.1.0 // indirect
30-
golang.org/x/sys v0.28.0 // indirect
30+
golang.org/x/sys v0.30.0 // indirect
3131
google.golang.org/protobuf v1.36.1 // indirect
3232
)

go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
5252
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
5353
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
5454
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
55-
golang.org/x/sync v0.11.0 h1:GGz8+XQP4FvTTrjZPzNKTMFtSXH80RAzG+5ghFPgK9w=
56-
golang.org/x/sync v0.11.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
57-
golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
58-
golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
55+
golang.org/x/sync v0.12.0 h1:MHc5BpPuC30uJk597Ri8TV3CNZcTLu6B6z4lJy+g6Jw=
56+
golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
57+
golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
58+
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
5959
google.golang.org/protobuf v1.36.1 h1:yBPeRvTftaleIgM3PZ/WBIZ7XM/eEYAaEyCwvyjq/gk=
6060
google.golang.org/protobuf v1.36.1/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
6161
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

0 commit comments

Comments
 (0)