Skip to content

Commit b96a5a4

Browse files
renovate-botBoxBoxJason
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 c7b7858 commit b96a5a4

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
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.7"
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.7"
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.7-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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ 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
99
github.com/spf13/cobra v1.10.1
10-
gitlab.com/gitlab-org/api/client-go v0.146.0
10+
gitlab.com/gitlab-org/api/client-go v0.157.0
1111
go.uber.org/zap v1.27.0
1212
)
1313

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)