Skip to content

Commit 904621a

Browse files
authored
Merge branch 'dev' into dependabot/go_modules/dev/github.com/projectdiscovery/goflags-0.1.76
2 parents 5485aae + f54d17a commit 904621a

9 files changed

Lines changed: 16 additions & 16 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ 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
2525
uses: docker/login-action@v4
@@ -28,7 +28,7 @@ jobs:
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ 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"
1616
uses: goreleaser/goreleaser-action@v7

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.26.5-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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/projectdiscovery/simplehttpserver
33
go 1.25.0
44

55
require (
6-
github.com/fsnotify/fsnotify v1.9.0
6+
github.com/fsnotify/fsnotify v1.10.1
77
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
88
github.com/projectdiscovery/goflags v0.1.76
99
github.com/projectdiscovery/gologger v1.1.68

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707/go.mod h1:qssHWj6
4949
github.com/dsnet/golib v0.0.0-20171103203638-1ea166775780/go.mod h1:Lj+Z9rebOhdfkVLjJ8T6VcRQv3SXugXy999NBtR9aFY=
5050
github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
5151
github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
52-
github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S9k=
53-
github.com/fsnotify/fsnotify v1.9.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0=
52+
github.com/fsnotify/fsnotify v1.10.1 h1:b0/UzAf9yR5rhf3RPm9gf3ehBPpf0oZKIjtpKrx59Ho=
53+
github.com/fsnotify/fsnotify v1.10.1/go.mod h1:TLheqan6HD6GBK6PrDWyDPBaEV8LspOxvPSjC+bVfgo=
5454
github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
5555
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
5656
github.com/go-ole/go-ole v1.2.6 h1:/Fpf6oFPoeFik9ty7siob0G6Ke8QvQEuVcuChpwXzpY=

0 commit comments

Comments
 (0)