Skip to content

Commit 84de83e

Browse files
authored
Merge pull request #437 from gofiber/codex/2025-10-17-10-30-15
update for fiber v3
2 parents 9105dc5 + eb92c12 commit 84de83e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+486
-631
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: actions/setup-go@v5
3333
with:
3434
# NOTE: Keep this in sync with the version from go.mod
35-
go-version: "1.20.x"
35+
go-version: "1.25.x"
3636
cache: false
3737

3838
- name: Run Benchmarks

.github/workflows/golangci-lint.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@ jobs:
3434
uses: actions/setup-go@v5
3535
with:
3636
# NOTE: Keep this in sync with the version from go.mod
37-
go-version: '1.20.x'
37+
go-version: '1.25.x'
3838
cache: false
3939
- name: golangci-lint
40-
uses: golangci/golangci-lint-action@v6
40+
uses: golangci/golangci-lint-action@v7
41+
env:
42+
GOLANGCI_LINT_SKIP_GOVERSION_CHECK: "1"
4143
with:
4244
# NOTE: Keep this in sync with the version from .golangci.yml
43-
version: 'v1.56.2'
45+
version: 'v2.6.1'

.github/workflows/gosec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Install Go
5656
uses: actions/setup-go@v5
5757
with:
58-
go-version: '^1.21.x'
58+
go-version: '1.25.x'
5959
check-latest: true
6060
cache: false
6161
- name: Install gosec

.github/workflows/govulncheck.yml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
name: Govulncheck Security Scan
2-
3-
on:
4-
push:
5-
branches:
6-
- "master"
7-
- "main"
8-
paths-ignore:
9-
- "**.md"
10-
- LICENSE
11-
- ".github/ISSUE_TEMPLATE/*.yml"
12-
- ".github/dependabot.yml"
13-
pull_request:
14-
branches:
15-
- "*"
16-
paths-ignore:
17-
- "**.md"
18-
- LICENSE
19-
- ".github/ISSUE_TEMPLATE/*.yml"
20-
- ".github/dependabot.yml"
21-
22-
jobs:
23-
govulncheck-check:
24-
runs-on: ubuntu-latest
25-
env:
26-
GO111MODULE: on
27-
steps:
28-
- name: Fetch Repository
29-
uses: actions/checkout@v5
30-
- name: Install Go
31-
uses: actions/setup-go@v5
32-
with:
33-
go-version: 'stable'
34-
check-latest: true
35-
cache: false
36-
- name: Install Govulncheck
37-
run: go install golang.org/x/vuln/cmd/govulncheck@latest
38-
- name: Run Govulncheck
39-
run: govulncheck ./...
1+
name: Govulncheck Security Scan
2+
3+
on:
4+
push:
5+
branches:
6+
- "master"
7+
- "main"
8+
paths-ignore:
9+
- "**.md"
10+
- LICENSE
11+
- ".github/ISSUE_TEMPLATE/*.yml"
12+
- ".github/dependabot.yml"
13+
pull_request:
14+
branches:
15+
- "*"
16+
paths-ignore:
17+
- "**.md"
18+
- LICENSE
19+
- ".github/ISSUE_TEMPLATE/*.yml"
20+
- ".github/dependabot.yml"
21+
22+
jobs:
23+
govulncheck-check:
24+
runs-on: ubuntu-latest
25+
env:
26+
GO111MODULE: on
27+
steps:
28+
- name: Fetch Repository
29+
uses: actions/checkout@v5
30+
- name: Install Go
31+
uses: actions/setup-go@v5
32+
with:
33+
go-version: '1.25.x'
34+
check-latest: false
35+
cache: false
36+
- name: Install Govulncheck
37+
run: go install golang.org/x/vuln/cmd/govulncheck@latest
38+
- name: Run Govulncheck
39+
run: govulncheck ./...

.github/workflows/test-ace.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
go-version:
19-
- 1.17.x
20-
- 1.18.x
21-
- 1.19.x
22-
- 1.20.x
23-
- 1.21.x
24-
- 1.22.x
19+
- 1.25.x
2520
platform: [ ubuntu-latest, windows-latest ]
2621
runs-on: ${{ matrix.platform }}
2722
steps:

.github/workflows/test-amber.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
go-version:
19-
- 1.17.x
20-
- 1.18.x
21-
- 1.19.x
22-
- 1.20.x
23-
- 1.21.x
24-
- 1.22.x
19+
- 1.25.x
2520
platform: [ ubuntu-latest, windows-latest ]
2621
runs-on: ${{ matrix.platform }}
2722
steps:

.github/workflows/test-django.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
go-version:
19-
- 1.18.x
20-
- 1.19.x
21-
- 1.20.x
22-
- 1.21.x
23-
- 1.22.x
19+
- 1.25.x
2420
platform: [ ubuntu-latest, windows-latest ]
2521
runs-on: ${{ matrix.platform }}
2622
steps:

.github/workflows/test-handlebars.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
go-version:
19-
- 1.17.x
20-
- 1.18.x
21-
- 1.19.x
22-
- 1.20.x
23-
- 1.21.x
24-
- 1.22.x
19+
- 1.25.x
2520
platform: [ ubuntu-latest, windows-latest ]
2621
runs-on: ${{ matrix.platform }}
2722
steps:

.github/workflows/test-html.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
go-version:
19-
- 1.17.x
20-
- 1.18.x
21-
- 1.19.x
22-
- 1.20.x
23-
- 1.21.x
24-
- 1.22.x
19+
- 1.25.x
2520
platform: [ ubuntu-latest, windows-latest ]
2621
runs-on: ${{ matrix.platform }}
2722
steps:

.github/workflows/test-jet.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
go-version:
19-
- 1.17.x
20-
- 1.18.x
21-
- 1.19.x
22-
- 1.20.x
23-
- 1.21.x
24-
- 1.22.x
19+
- 1.25.x
2520
platform: [ ubuntu-latest, windows-latest ]
2621
runs-on: ${{ matrix.platform }}
2722
steps:

0 commit comments

Comments
 (0)