File tree Expand file tree Collapse file tree 6 files changed +16
-12
lines changed
Expand file tree Collapse file tree 6 files changed +16
-12
lines changed Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff 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 }}
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 : |
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ 1.25
Original file line number Diff line number Diff line change 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
44WORKDIR /app
Original file line number Diff line number Diff line change 11module github.com/fosrl/gerbil
22
3- go 1.23.1
4-
5- toolchain go1.23.2
3+ go 1.25
64
75require (
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
You can’t perform that action at this time.
0 commit comments