Skip to content

Commit 365cec3

Browse files
dependabot[bot]BoxBoxJason
authored andcommitted
chore(deps): upgrade all dependencies
chore(deps): add renovate configuration file chore(deps): update actions/setup-go action to v6 chore(deps): update actions/checkout action to v5 chore(deps): update module github.com/go-git/go-git/v5 to v5.16.3 chore(deps): update alpine docker tag to v3.22.2 chore(deps): update dependency go to v1.25.3 chore(deps): update docker.io/golang docker tag to v1.25.3 chore(deps): update module gitlab.com/gitlab-org/api/client-go to v0.157.0
1 parent 0ab6e45 commit 365cec3

File tree

5 files changed

+27
-22
lines changed

5 files changed

+27
-22
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
name: Lint and Unit Test
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
2121

22-
- uses: actions/setup-go@v5
22+
- uses: actions/setup-go@v6
2323
with:
24-
go-version: "1.24.4"
24+
go-version: "1.25.3"
2525
- run: go mod tidy
2626
- run: go install gotest.tools/gotestsum@latest
2727
- run: go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616

@@ -36,12 +36,12 @@ jobs:
3636
arch: [amd64, arm64]
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040

4141
- name: Set up Go
42-
uses: actions/setup-go@v5
42+
uses: actions/setup-go@v6
4343
with:
44-
go-version: 1.24.2
44+
go-version: "1.25.3"
4545

4646
- name: Build
4747
run: go mod tidy && go build -ldflags "-X main.version=${{ github.ref_name }}" -o gitlab-sync_${{ matrix.os }}_${{ matrix.arch }} cmd/main.go
@@ -65,7 +65,7 @@ jobs:
6565
runs-on: ubuntu-latest
6666
steps:
6767
- name: Check out code
68-
uses: actions/checkout@v4
68+
uses: actions/checkout@v5
6969
with:
7070
fetch-depth: 0
7171

Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/golang:1.24.4-alpine AS build
1+
FROM docker.io/golang:1.25.3-alpine AS build
22

33
ARG VERSION="dev"
44

@@ -15,7 +15,7 @@ ENV GO111MODULE=on \
1515
RUN go mod tidy && \
1616
go build -ldflags "-X 'main.version=${VERSION}'" -o /app/bin/gitlab-sync ./cmd/main.go
1717

18-
FROM alpine:3.22.0 AS security_provider
18+
FROM alpine:3.22.2 AS security_provider
1919

2020
RUN addgroup -S gitlab-sync \
2121
&& adduser -S gitlab-sync -G gitlab-sync

go.mod

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module gitlab-sync
22

3-
go 1.24.4
3+
go 1.24.7
44

55
require (
66
github.com/Masterminds/semver/v3 v3.4.0
7-
github.com/go-git/go-git/v5 v5.16.2
7+
github.com/go-git/go-git/v5 v5.16.3
88
github.com/hashicorp/go-retryablehttp v0.7.8
9-
github.com/spf13/cobra v1.9.1
10-
gitlab.com/gitlab-org/api/client-go v0.134.0
9+
github.com/spf13/cobra v1.10.1
10+
gitlab.com/gitlab-org/api/client-go v0.157.0
1111
go.uber.org/zap v1.27.0
1212
)
1313

@@ -25,17 +25,19 @@ require (
2525
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
2626
github.com/inconshreveable/mousetrap v1.1.0 // indirect
2727
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
28-
github.com/kevinburke/ssh_config v1.2.0 // indirect
29-
github.com/pjbgf/sha1cd v0.4.0 // indirect
28+
github.com/kevinburke/ssh_config v1.4.0 // indirect
29+
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
30+
github.com/pjbgf/sha1cd v0.5.0 // indirect
3031
github.com/sergi/go-diff v1.4.0 // indirect
3132
github.com/skeema/knownhosts v1.3.1 // indirect
32-
github.com/spf13/pflag v1.0.6 // indirect
33+
github.com/spf13/pflag v1.0.10 // indirect
3334
github.com/xanzy/ssh-agent v0.3.3 // indirect
3435
go.uber.org/multierr v1.11.0 // indirect
35-
golang.org/x/crypto v0.40.0 // indirect
36-
golang.org/x/net v0.42.0 // indirect
37-
golang.org/x/oauth2 v0.30.0 // indirect
38-
golang.org/x/sys v0.34.0 // indirect
39-
golang.org/x/time v0.12.0 // indirect
36+
golang.org/x/crypto v0.42.0 // indirect
37+
golang.org/x/exp v0.0.0-20250911091902-df9299821621 // indirect
38+
golang.org/x/net v0.44.0 // indirect
39+
golang.org/x/oauth2 v0.31.0 // indirect
40+
golang.org/x/sys v0.36.0 // indirect
41+
golang.org/x/time v0.13.0 // indirect
4042
gopkg.in/warnings.v0 v0.1.2 // indirect
4143
)

renovate.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
3+
}

0 commit comments

Comments
 (0)