Skip to content

Commit 554b1d5

Browse files
Merge branch 'main' into dev
2 parents 9f5b8de + 4758957 commit 554b1d5

File tree

6 files changed

+16
-12
lines changed

6 files changed

+16
-12
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,8 @@ updates:
3333
minor-updates:
3434
update-types:
3535
- "minor"
36+
37+
- package-ecosystem: "github-actions"
38+
directory: "/"
39+
schedule:
40+
interval: "weekly"

.github/workflows/cicd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ jobs:
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Set up QEMU
1818
uses: docker/setup-qemu-action@v3
1919

2020
- name: Set up Docker Buildx
21-
uses: docker/setup-buildx-action@v2
21+
uses: docker/setup-buildx-action@v3
2222

2323
- name: Log in to Docker Hub
24-
uses: docker/login-action@v2
24+
uses: docker/login-action@v3
2525
with:
2626
username: ${{ secrets.DOCKER_HUB_USERNAME }}
2727
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
@@ -31,9 +31,9 @@ jobs:
3131
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
3232

3333
- name: Install Go
34-
uses: actions/setup-go@v4
34+
uses: actions/setup-go@v5
3535
with:
36-
go-version: 1.23.1
36+
go-version: 1.25
3737

3838
- name: Build and push Docker images
3939
run: |

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- uses: actions/checkout@v4
1515

1616
- name: Set up Go
17-
uses: actions/setup-go@v4
17+
uses: actions/setup-go@v5
1818
with:
19-
go-version: '1.23'
19+
go-version: '1.25'
2020

2121
- name: Build go
2222
run: go build

.go-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.25

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25.0-alpine AS builder
1+
FROM golang:1.25-alpine AS builder
22

33
# Set the working directory inside the container
44
WORKDIR /app

go.mod

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
module github.com/fosrl/gerbil
22

3-
go 1.23.1
4-
5-
toolchain go1.23.2
3+
go 1.25
64

75
require (
86
github.com/vishvananda/netlink v1.3.1
7+
golang.org/x/crypto v0.36.0
98
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
109
)
1110

@@ -17,7 +16,6 @@ require (
1716
github.com/mdlayher/socket v0.4.1 // indirect
1817
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
1918
github.com/vishvananda/netns v0.0.5 // indirect
20-
golang.org/x/crypto v0.36.0 // indirect
2119
golang.org/x/net v0.38.0 // indirect
2220
golang.org/x/sync v0.1.0 // indirect
2321
golang.org/x/sys v0.31.0 // indirect

0 commit comments

Comments
 (0)