Skip to content

Commit e39feb6

Browse files
fix(deps): update all non-major dependencies in .github/workflows/tinygo.yml
1 parent b947899 commit e39feb6

10 files changed

Lines changed: 96 additions & 41 deletions

File tree

.github/workflows/close-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
issues: write
1313
pull-requests: write
1414
steps:
15-
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10
15+
- uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10
1616
with:
1717
days-before-issue-stale: 30
1818
days-before-issue-close: 14

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
23+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2424

2525
- name: Initialize CodeQL
26-
uses: github/codeql-action/init@e296a935590eb16afc0c0108289f68c87e2a89a5 # v4
26+
uses: github/codeql-action/init@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
2727
with:
2828
languages: go
2929

3030
- name: Autobuild
31-
uses: github/codeql-action/autobuild@e296a935590eb16afc0c0108289f68c87e2a89a5 # v4
31+
uses: github/codeql-action/autobuild@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4
3232

3333
- name: Perform CodeQL Analysis
34-
uses: github/codeql-action/analyze@e296a935590eb16afc0c0108289f68c87e2a89a5 # v4
34+
uses: github/codeql-action/analyze@7211b7c8077ea37d8641b6271f6a365a22a5fbfa # v4

.github/workflows/fuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
contents: read
1717
issues: write
1818
steps:
19-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
20-
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
19+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
20+
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
2121
with:
2222
go-version: ">=1.25.0"
2323
- run: go run mage.go fuzz

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
permissions:
2727
contents: read
2828
steps:
29-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
29+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3030
- name: Install Go
31-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
31+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
3232
with:
33-
go-version: 1.25.x
33+
go-version: 1.26.x
3434
cache: true
3535
- run: go run mage.go lint

.github/workflows/regression.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ jobs:
5656
GOLANG_BASE_VERSION: "1.25.x"
5757
steps:
5858
- name: Checkout code
59-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
59+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
6060
- name: Install Go
61-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
61+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
6262
with:
6363
go-version: ${{ matrix.go-version }}
6464
cache: true
@@ -67,28 +67,28 @@ jobs:
6767
BUILD_TAGS: ${{ matrix.build-flag }}
6868
run: go run mage.go coverage
6969
- name: "Codecov: General"
70-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6
70+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6
7171
if: ${{ matrix.go-version == env.GOLANG_BASE_VERSION }}
7272
with:
7373
files: build/coverage.txt
7474
flags: default,${{ matrix.build-flag }}
7575
token: ${{ secrets.CODECOV_TOKEN }}
7676
- name: "Codecov: Examples"
77-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6
77+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6
7878
if: ${{ matrix.go-version == env.GOLANG_BASE_VERSION }}
7979
with:
8080
files: build/coverage-examples.txt
8181
flags: examples+${{ matrix.build-flag }}
8282
token: ${{ secrets.CODECOV_TOKEN }}
8383
- name: "Codecov: FTW"
84-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6
84+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6
8585
if: ${{ matrix.go-version == env.GOLANG_BASE_VERSION }}
8686
with:
8787
files: build/coverage-ftw.txt
8888
flags: ftw,${{ matrix.build-flag }}
8989
token: ${{ secrets.CODECOV_TOKEN }}
9090
- name: "Codecov: Tinygo"
91-
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6
91+
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6
9292
# only if coverage-tinygo.txt exists
9393
if: ${{ matrix.go-version == env.GOLANG_BASE_VERSION && hashFiles('build/coverage-tinygo.txt') != '' }}
9494
with:

.github/workflows/tinygo.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
contents: read
3434
steps:
3535
- name: Checkout code
36-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
36+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3737

3838
- name: Install Go
39-
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6
39+
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
4040
with:
4141
go-version: ${{ matrix.go-version }}
4242
cache: true
@@ -50,7 +50,7 @@ jobs:
5050
tinygo-version: ${{ matrix.tinygo-version }}
5151

5252
- name: Cache TinyGo build
53-
uses: actions/cache@a7833574556fa59680c1b7cb190c1735db73ebf0 # v5
53+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
5454
with:
5555
path: |
5656
~/.cache/tinygo

go.mod

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/corazawaf/coraza/v3
22

3-
go 1.25.0
3+
go 1.26.2
44

55
// Testing dependencies:
66
// - go-mockdns
@@ -20,13 +20,13 @@ require (
2020
github.com/anuraaga/go-modsecurity v0.0.0-20220824035035-b9a4099778df
2121
github.com/corazawaf/coraza-coreruleset v0.0.0-20240226094324-415b1017abdc
2222
github.com/corazawaf/libinjection-go v0.3.2
23-
github.com/foxcpp/go-mockdns v1.1.0
23+
github.com/foxcpp/go-mockdns v1.2.0
2424
github.com/jcchavezs/mergefs v0.1.1
25-
github.com/kaptinlin/jsonschema v0.4.6
26-
github.com/magefile/mage v1.17.0
27-
github.com/mccutchen/go-httpbin/v2 v2.18.3
25+
github.com/kaptinlin/jsonschema v0.7.13
26+
github.com/magefile/mage v1.17.2
27+
github.com/mccutchen/go-httpbin/v2 v2.22.1
2828
github.com/petar-dambovaliev/aho-corasick v0.0.0-20250424160509-463d218d4745
29-
github.com/tidwall/gjson v1.18.0
29+
github.com/tidwall/gjson v1.19.0
3030
github.com/valllabh/ocsf-schema-golang v1.0.3
3131
golang.org/x/net v0.55.0
3232
golang.org/x/sync v0.20.0
@@ -35,11 +35,14 @@ require (
3535

3636
require (
3737
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
38+
github.com/go-json-experiment/json v0.0.0-20260430182902-b6187a392ed4 // indirect
3839
github.com/goccy/go-json v0.10.5 // indirect
39-
github.com/goccy/go-yaml v1.18.0 // indirect
40+
github.com/goccy/go-yaml v1.19.2 // indirect
4041
github.com/gotnospirit/makeplural v0.0.0-20180622080156-a5f48d94d976 // indirect
4142
github.com/gotnospirit/messageformat v0.0.0-20221001023931-dfe49f1eb092 // indirect
42-
github.com/kaptinlin/go-i18n v0.1.4 // indirect
43+
github.com/kaptinlin/go-i18n v0.4.5 // indirect
44+
github.com/kaptinlin/jsonpointer v0.4.20 // indirect
45+
github.com/kaptinlin/messageformat-go v0.6.0 // indirect
4346
github.com/miekg/dns v1.1.57 // indirect
4447
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
4548
github.com/stretchr/testify v1.11.1 // indirect

go.sum

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,16 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
88
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
99
github.com/foxcpp/go-mockdns v1.1.0 h1:jI0rD8M0wuYAxL7r/ynTrCQQq0BVqfB99Vgk7DlmewI=
1010
github.com/foxcpp/go-mockdns v1.1.0/go.mod h1:IhLeSFGed3mJIAXPH2aiRQB+kqz7oqu8ld2qVbOu7Wk=
11+
github.com/foxcpp/go-mockdns v1.2.0 h1:omK3OrHRD1IWJz1FuFBCFquhXslXoF17OvBS6JPzZF0=
12+
github.com/foxcpp/go-mockdns v1.2.0/go.mod h1:IhLeSFGed3mJIAXPH2aiRQB+kqz7oqu8ld2qVbOu7Wk=
13+
github.com/go-json-experiment/json v0.0.0-20260430182902-b6187a392ed4 h1:2WmHkJINIjgXXYDGik8d3oJvFA3DAwPy00csDJ3vo+o=
14+
github.com/go-json-experiment/json v0.0.0-20260430182902-b6187a392ed4/go.mod h1:tphK2c80bpPhMOI4v6bIc2xWywPfbqi1Z06+RcrMkDg=
1115
github.com/goccy/go-json v0.10.5 h1:Fq85nIqj+gXn/S5ahsiTlK3TmC85qgirsdTP/+DeaC4=
1216
github.com/goccy/go-json v0.10.5/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M=
1317
github.com/goccy/go-yaml v1.18.0 h1:8W7wMFS12Pcas7KU+VVkaiCng+kG8QiFeFwzFb+rwuw=
1418
github.com/goccy/go-yaml v1.18.0/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA=
19+
github.com/goccy/go-yaml v1.19.2 h1:PmFC1S6h8ljIz6gMRBopkjP1TVT7xuwrButHID66PoM=
20+
github.com/goccy/go-yaml v1.19.2/go.mod h1:XBurs7gK8ATbW4ZPGKgcbrY1Br56PdM69F7LkFRi1kA=
1521
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
1622
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
1723
github.com/gotnospirit/makeplural v0.0.0-20180622080156-a5f48d94d976 h1:b70jEaX2iaJSPZULSUxKtm73LBfsCrMsIlYCUgNGSIs=
@@ -22,12 +28,24 @@ github.com/jcchavezs/mergefs v0.1.1 h1:D45R17m6dHnSVZefnhynoeZvcK2Uw0oTrRfoUOQ0S
2228
github.com/jcchavezs/mergefs v0.1.1/go.mod h1:eRLTrsA+vFwQZ48hj8p8gki/5v9C2bFtHH5Mnn4bcGk=
2329
github.com/kaptinlin/go-i18n v0.1.4 h1:wCiwAn1LOcvymvWIVAM4m5dUAMiHunTdEubLDk4hTGs=
2430
github.com/kaptinlin/go-i18n v0.1.4/go.mod h1:g1fn1GvTgT4CiLE8/fFE1hboHWJ6erivrDpiDtCcFKg=
31+
github.com/kaptinlin/go-i18n v0.4.5 h1:9tIlo5A0RXth+yZJO2MG7Bhpu/X9PlzQnGz/qyYWNoY=
32+
github.com/kaptinlin/go-i18n v0.4.5/go.mod h1:mU/7BH4molY5lGZYBwBRKAaiJ70dWRHuqmQ0/pFLGno=
33+
github.com/kaptinlin/jsonpointer v0.4.20 h1:otSZZnCVdVo9OwOm+AQhS8ke31CLLQYXmG5Q0GOrXYg=
34+
github.com/kaptinlin/jsonpointer v0.4.20/go.mod h1:Mo7+DX8RlQTFqS4dnYJl0izSP4ob+Rl5xO/mGDETgaU=
2535
github.com/kaptinlin/jsonschema v0.4.6 h1:vOSFg5tjmfkOdKg+D6Oo4fVOM/pActWu/ntkPsI1T64=
2636
github.com/kaptinlin/jsonschema v0.4.6/go.mod h1:1DUd7r5SdyB2ZnMtyB7uLv64dE3zTFTiYytDCd+AEL0=
37+
github.com/kaptinlin/jsonschema v0.7.13 h1:kahVXTy/rURL0XJjyQ9WELm59wEmXi6IY0TWswQEFvU=
38+
github.com/kaptinlin/jsonschema v0.7.13/go.mod h1:Uh0aUBusnhXDCEXJ2oimL/hx7YTo7F+sKniE+tM0ERc=
39+
github.com/kaptinlin/messageformat-go v0.6.0 h1:D6jiXFsKW4/JG2CMddv/F6Rev9KVbCRKEzzV5QOAcpc=
40+
github.com/kaptinlin/messageformat-go v0.6.0/go.mod h1:NKjwS6e9u7DRhAK+vydjDDwJ7UbdHhYjk/yk2WPuZPs=
2741
github.com/magefile/mage v1.17.0 h1:dS4tkq997Ism03akafC8509iqDjeE7TNTexI25Y7sXM=
2842
github.com/magefile/mage v1.17.0/go.mod h1:Yj51kqllmsgFpvvSzgrZPK9WtluG3kUhFaBUVLo4feA=
43+
github.com/magefile/mage v1.17.2 h1:fyXVu1eadI8Ap1HCCNgEhJ5McIWiYhLR8uol64ZZc40=
44+
github.com/magefile/mage v1.17.2/go.mod h1:Yj51kqllmsgFpvvSzgrZPK9WtluG3kUhFaBUVLo4feA=
2945
github.com/mccutchen/go-httpbin/v2 v2.18.3 h1:DyckIScjHLJtmlSju+rgjqqI1nL8AdMZHsLSljlbnMU=
3046
github.com/mccutchen/go-httpbin/v2 v2.18.3/go.mod h1:GBy5I7XwZ4ZLhT3hcq39I4ikwN9x4QUt6EAxNiR8Jus=
47+
github.com/mccutchen/go-httpbin/v2 v2.22.1 h1:dPXXDER9uwlXrIJ+JtvY88ArFe7twHUMp0i2xmT8vvQ=
48+
github.com/mccutchen/go-httpbin/v2 v2.22.1/go.mod h1:8hkN5rHf0QvJYEovZ8u/Dudtqyj6Z5gxQaW7scQfT0Y=
3149
github.com/miekg/dns v1.1.57 h1:Jzi7ApEIzwEPLHWRcafCN9LZSBbqQpxjt/wpgvg7wcM=
3250
github.com/miekg/dns v1.1.57/go.mod h1:uqRjCRUuEAA6qsOiJvDd+CFo/vW+y5WR6SNmHE55hZk=
3351
github.com/pelletier/go-toml/v2 v2.2.4 h1:mye9XuhQ6gvn5h28+VilKrrPoQVanw5PMw/TB0t5Ec4=
@@ -40,6 +58,8 @@ github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu
4058
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
4159
github.com/tidwall/gjson v1.18.0 h1:FIDeeyB800efLX89e5a8Y0BNH+LOngJyGrIWxG2FKQY=
4260
github.com/tidwall/gjson v1.18.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk=
61+
github.com/tidwall/gjson v1.19.0 h1:xwxm7n691Uf3u5OFjzngavjGTh55KX5q/9w9xHW88JU=
62+
github.com/tidwall/gjson v1.19.0/go.mod h1:V37/opeE/JbLUOfH0QTXiNez2l0RUjYUhpT4szFQAfc=
4363
github.com/tidwall/match v1.1.1 h1:+Ho715JplO36QYgwN9PGYNhgZvoUSc9X2c80KVTi+GA=
4464
github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM=
4565
github.com/tidwall/pretty v1.2.0/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU=

testing/coreruleset/go.mod

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
module github.com/corazawaf/coraza/v3/testing/coreruleset
22

3-
go 1.25.0
3+
go 1.26.2
44

55
require (
6-
github.com/bmatcuk/doublestar/v4 v4.9.1
6+
github.com/bmatcuk/doublestar/v4 v4.10.0
77
github.com/corazawaf/coraza-coreruleset/v4 v4.25.0
8-
github.com/corazawaf/coraza/v3 v3.3.3
8+
github.com/corazawaf/coraza/v3 v3.7.0
99
github.com/coreruleset/albedo v0.3.0
10-
github.com/coreruleset/go-ftw/v2 v2.1.0
11-
github.com/rs/zerolog v1.35.0
10+
github.com/coreruleset/go-ftw/v2 v2.2.0
11+
github.com/rs/zerolog v1.35.1
1212
)
1313

1414
require (
@@ -19,46 +19,49 @@ require (
1919
github.com/corazawaf/libinjection-go v0.3.2 // indirect
2020
github.com/coreruleset/ftw-tests-schema/v2 v2.3.0 // indirect
2121
github.com/fsnotify/fsnotify v1.9.0 // indirect
22+
github.com/go-json-experiment/json v0.0.0-20260430182902-b6187a392ed4 // indirect
2223
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
2324
github.com/goccy/go-json v0.10.5 // indirect
24-
github.com/goccy/go-yaml v1.18.0 // indirect
25+
github.com/goccy/go-yaml v1.19.2 // indirect
2526
github.com/google/uuid v1.6.0 // indirect
2627
github.com/gotnospirit/makeplural v0.0.0-20180622080156-a5f48d94d976 // indirect
2728
github.com/gotnospirit/messageformat v0.0.0-20221001023931-dfe49f1eb092 // indirect
2829
github.com/huandu/xstrings v1.5.0 // indirect
2930
github.com/icza/backscanner v0.0.0-20241124160932-dff01ac50250 // indirect
30-
github.com/kaptinlin/go-i18n v0.1.4 // indirect
31-
github.com/kaptinlin/jsonschema v0.4.6 // indirect
31+
github.com/kaptinlin/go-i18n v0.4.5 // indirect
32+
github.com/kaptinlin/jsonpointer v0.4.20 // indirect
33+
github.com/kaptinlin/jsonschema v0.7.13 // indirect
34+
github.com/kaptinlin/messageformat-go v0.6.0 // indirect
3235
github.com/knadh/koanf/maps v0.1.2 // indirect
3336
github.com/knadh/koanf/parsers/yaml v1.1.0 // indirect
3437
github.com/knadh/koanf/providers/env/v2 v2.0.0 // indirect
3538
github.com/knadh/koanf/providers/file v1.2.1 // indirect
3639
github.com/knadh/koanf/providers/rawbytes v1.0.0 // indirect
37-
github.com/knadh/koanf/v2 v2.3.2 // indirect
40+
github.com/knadh/koanf/v2 v2.3.4 // indirect
3841
github.com/kyokomi/emoji/v2 v2.2.13 // indirect
39-
github.com/magefile/mage v1.17.0 // indirect
42+
github.com/magefile/mage v1.17.2 // indirect
4043
github.com/mattn/go-colorable v0.1.14 // indirect
4144
github.com/mattn/go-isatty v0.0.20 // indirect
4245
github.com/mitchellh/copystructure v1.2.0 // indirect
4346
github.com/mitchellh/reflectwalk v1.0.2 // indirect
4447
github.com/petar-dambovaliev/aho-corasick v0.0.0-20250424160509-463d218d4745 // indirect
45-
github.com/rogpeppe/go-internal v1.13.1 // indirect
48+
github.com/rogpeppe/go-internal v1.14.1 // indirect
4649
github.com/shopspring/decimal v1.4.0 // indirect
4750
github.com/spf13/cast v1.7.0 // indirect
48-
github.com/tidwall/gjson v1.18.0 // indirect
51+
github.com/tidwall/gjson v1.19.0 // indirect
4952
github.com/tidwall/match v1.1.1 // indirect
5053
github.com/tidwall/pretty v1.2.1 // indirect
5154
github.com/valllabh/ocsf-schema-golang v1.0.3 // indirect
5255
github.com/yargevad/filepathx v1.0.0 // indirect
5356
go.yaml.in/yaml/v3 v3.0.4 // indirect
5457
go.yaml.in/yaml/v4 v4.0.0-rc.4 // indirect
5558
golang.org/x/crypto v0.52.0 // indirect
56-
golang.org/x/exp v0.0.0-20260212183809-81e46e3db34a // indirect
59+
golang.org/x/exp v0.0.0-20260410095643-746e56fc9e2f // indirect
5760
golang.org/x/net v0.55.0 // indirect
5861
golang.org/x/sync v0.20.0 // indirect
5962
golang.org/x/sys v0.45.0 // indirect
6063
golang.org/x/text v0.37.0 // indirect
61-
golang.org/x/time v0.14.0 // indirect
64+
golang.org/x/time v0.15.0 // indirect
6265
google.golang.org/protobuf v1.36.11 // indirect
6366
gopkg.in/yaml.v3 v3.0.1 // indirect
6467
rsc.io/binaryregexp v0.2.0 // indirect

0 commit comments

Comments
 (0)