Skip to content

Commit 591ae7c

Browse files
authored
Merge branch 'dev' into dependabot/go_modules/dev/github.com/fsnotify/fsnotify-1.10.1
2 parents d0a62cf + b760a6d commit 591ae7c

9 files changed

Lines changed: 93 additions & 51 deletions

File tree

.github/workflows/auto-merge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
if: github.actor == 'dependabot[bot]'
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v7
2222
with:
2323
token: ${{ secrets.DEPENDABOT_PAT }}
2424

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Test Builds
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v7
1717
- uses: projectdiscovery/actions/setup/go@v1
1818

1919
- name: Test

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ jobs:
2626

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v7
3030

3131
# Initializes the CodeQL tools for scanning.
3232
- name: Initialize CodeQL
33-
uses: github/codeql-action/init@v3
33+
uses: github/codeql-action/init@v4
3434
with:
3535
languages: ${{ matrix.language }}
3636

3737
- name: Autobuild
38-
uses: github/codeql-action/autobuild@v3
38+
uses: github/codeql-action/autobuild@v4
3939

4040
- name: Perform CodeQL Analysis
41-
uses: github/codeql-action/analyze@v3
41+
uses: github/codeql-action/analyze@v4

.github/workflows/dockerhub-push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@ jobs:
1313
steps:
1414
-
1515
name: Checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v7
1717
-
1818
name: Set up QEMU
19-
uses: docker/setup-qemu-action@v3
19+
uses: docker/setup-qemu-action@v4
2020
-
2121
name: Set up Docker Buildx
22-
uses: docker/setup-buildx-action@v3
22+
uses: docker/setup-buildx-action@v4
2323
-
2424
name: Login to DockerHub
25-
uses: docker/login-action@v3
25+
uses: docker/login-action@v4
2626
with:
2727
username: ${{ secrets.DOCKER_USERNAME }}
2828
password: ${{ secrets.DOCKER_TOKEN }}
2929
-
3030
name: Build and push
31-
uses: docker/build-push-action@v6
31+
uses: docker/build-push-action@v7
3232
with:
3333
context: .
3434
platforms: linux/amd64,linux/arm64,linux/arm

.github/workflows/lint-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
name: Lint Test
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v7
1616
- uses: projectdiscovery/actions/setup/go@v1
1717
- uses: projectdiscovery/actions/golangci-lint/v2@v1

.github/workflows/release-binary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
release:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v7
1414
- uses: projectdiscovery/actions/setup/go@v1
1515
- name: "Create release on GitHub"
16-
uses: goreleaser/goreleaser-action@v4
16+
uses: goreleaser/goreleaser-action@v7
1717
env:
1818
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
1919
SLACK_WEBHOOK: "${{ secrets.RELEASE_SLACK_WEBHOOK }}"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25.6-alpine as build-env
1+
FROM golang:1.27.0-alpine as build-env
22
RUN go install -v github.com/projectdiscovery/simplehttpserver/cmd/simplehttpserver@latest
33

44
FROM alpine:latest

go.mod

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module github.com/projectdiscovery/simplehttpserver
22

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
github.com/fsnotify/fsnotify v1.10.1
77
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
8-
github.com/projectdiscovery/goflags v0.1.74
8+
github.com/projectdiscovery/goflags v0.1.75
99
github.com/projectdiscovery/gologger v1.1.68
1010
github.com/projectdiscovery/sslcert v0.0.0-20210416140253-8f56bec1bb5e
1111
gopkg.in/yaml.v2 v2.4.0
@@ -19,43 +19,52 @@ require (
1919
github.com/bodgit/plumbing v1.3.0 // indirect
2020
github.com/bodgit/sevenzip v1.6.1 // indirect
2121
github.com/bodgit/windows v1.0.1 // indirect
22-
github.com/cnf/structhash v0.0.0-20201127153200-e1b16c1ebc08 // indirect
22+
github.com/cnf/structhash v0.0.0-20250313080605-df4c6cc74a9a // indirect
2323
github.com/djherbis/times v1.6.0 // indirect
2424
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707 // indirect
25+
github.com/go-ole/go-ole v1.2.6 // indirect
2526
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
2627
github.com/gorilla/css v1.0.1 // indirect
2728
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
2829
github.com/json-iterator/go v1.1.12 // indirect
2930
github.com/klauspost/compress v1.18.2 // indirect
3031
github.com/klauspost/pgzip v1.2.6 // indirect
3132
github.com/logrusorgru/aurora/v4 v4.0.0 // indirect
33+
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
3234
github.com/mattn/go-isatty v0.0.20 // indirect
3335
github.com/mholt/archives v0.1.5 // indirect
3436
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
35-
github.com/miekg/dns v1.1.62 // indirect
37+
github.com/miekg/dns v1.1.72 // indirect
3638
github.com/mikelolasagasti/xz v1.0.1 // indirect
3739
github.com/minio/minlz v1.0.1 // indirect
3840
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3941
github.com/modern-go/reflect2 v1.0.2 // indirect
4042
github.com/nwaples/rardecode/v2 v2.2.2 // indirect
4143
github.com/pierrec/lz4/v4 v4.1.23 // indirect
4244
github.com/pkg/errors v0.9.1 // indirect
45+
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
4346
github.com/projectdiscovery/blackrock v0.0.1 // indirect
44-
github.com/projectdiscovery/utils v0.9.0 // indirect
47+
github.com/projectdiscovery/utils v0.9.1-0.20260204132542-2eee3afb1f86 // indirect
4548
github.com/saintfish/chardet v0.0.0-20230101081208-5e3ef4b5456d // indirect
49+
github.com/shirou/gopsutil/v3 v3.23.7 // indirect
50+
github.com/shoenig/go-m1cpu v0.1.6 // indirect
4651
github.com/sorairolake/lzip-go v0.3.8 // indirect
4752
github.com/spf13/afero v1.15.0 // indirect
4853
github.com/tidwall/gjson v1.18.0 // indirect
49-
github.com/tidwall/match v1.1.1 // indirect
54+
github.com/tidwall/match v1.2.0 // indirect
5055
github.com/tidwall/pretty v1.2.1 // indirect
56+
github.com/tklauser/go-sysconf v0.3.12 // indirect
57+
github.com/tklauser/numcpus v0.6.1 // indirect
5158
github.com/ulikunitz/xz v0.5.15 // indirect
59+
github.com/yusufpapurcu/wmi v1.2.4 // indirect
5260
go4.org v0.0.0-20230225012048-214862532bf5 // indirect
53-
golang.org/x/exp v0.0.0-20250106191152-7588d65b2ba8 // indirect
54-
golang.org/x/mod v0.30.0 // indirect
55-
golang.org/x/net v0.48.0 // indirect
56-
golang.org/x/sync v0.19.0 // indirect
57-
golang.org/x/sys v0.39.0 // indirect
58-
golang.org/x/text v0.32.0 // indirect
59-
golang.org/x/tools v0.39.0 // indirect
61+
golang.org/x/exp v0.0.0-20260112195511-716be5621a96 // indirect
62+
golang.org/x/mod v0.35.0 // indirect
63+
golang.org/x/net v0.55.0 // indirect
64+
golang.org/x/sync v0.20.0 // indirect
65+
golang.org/x/sys v0.45.0 // indirect
66+
golang.org/x/term v0.43.0 // indirect
67+
golang.org/x/text v0.37.0 // indirect
68+
golang.org/x/tools v0.44.0 // indirect
6069
gopkg.in/yaml.v3 v3.0.1 // indirect
6170
)

0 commit comments

Comments
 (0)