Skip to content

Commit 2ef1000

Browse files
committed
Fix github actions
1 parent b0953c7 commit 2ef1000

5 files changed

Lines changed: 3 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
- name: Set up Go
7878
uses: actions/setup-go@v4
7979
with:
80-
go-version: '1.22'
80+
go-version: '1.24'
8181

8282
- name: Build Binary
8383
env:

.github/workflows/test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,13 @@ on:
77
jobs:
88
test:
99
runs-on: ubuntu-latest
10-
strategy:
11-
matrix:
12-
go-version: [1.21, 1.22]
13-
1410
steps:
1511
- uses: actions/checkout@v4
1612

1713
- name: Set up Go
1814
uses: actions/setup-go@v4
1915
with:
20-
go-version: ${{ matrix.go-version }}
16+
go-version: 1.24
2117

2218
- name: Cache Go modules
2319
uses: actions/cache@v3

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Multi-stage build for MaskTunnel
2-
FROM golang:1.22-alpine AS builder
2+
FROM golang:1.24-alpine AS builder
33

44
# Install ca-certificates for build
55
RUN apk add --no-cache ca-certificates git

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ toolchain go1.24.4
77
require (
88
github.com/Noooste/azuretls-client v1.11.0
99
github.com/cristalhq/base64 v0.1.2
10-
github.com/gorilla/websocket v1.5.3
1110
github.com/mileusna/useragent v1.3.4
1211
github.com/rs/zerolog v1.34.0
1312
)

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ github.com/google/gopacket v1.1.19 h1:ves8RnFZPGiFnTS0uPQStjwru6uO6h+nlr9j6fL7kF
3737
github.com/google/gopacket v1.1.19/go.mod h1:iJ8V8n6KS+z2U1A8pUwu8bW5SyEMkXJB8Yo/Vo+TKTo=
3838
github.com/google/pprof v0.0.0-20250607225305-033d6d78b36a h1://KbezygeMJZCSHH+HgUZiTeSoiuFspbMg1ge+eFj18=
3939
github.com/google/pprof v0.0.0-20250607225305-033d6d78b36a/go.mod h1:5hDyRhoBCxViHszMt12TnOpEI4VVi+U8Gm9iphldiMA=
40-
github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg=
41-
github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
4240
github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo=
4341
github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ=
4442
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=

0 commit comments

Comments
 (0)