Skip to content

Commit a4d46ca

Browse files
committed
Merge remote-tracking branch 'origin/main' into dropdowncss
* origin/main: (34 commits) Fine tune diff highlighting (go-gitea#36592) Add code editor setting dropdowns (go-gitea#36534) Update to go 1.26.0 and golangci-lint 2.9.0 (go-gitea#36588) Improve diff highlighting (go-gitea#36583) Fix markup code block layout (go-gitea#36578) Remove striped tables in UI (go-gitea#36509) Fix vertical alignment of `.commit-sign-badge` children (go-gitea#36570) Fix mirror sync parser and fix mirror messages (go-gitea#36504) Update JS and PY deps (go-gitea#36576) Add viewer controller for mermaid (zoom, drag) (go-gitea#36557) Misc typescript tweaks (go-gitea#36523) Use full-file highlighting for diff sections (go-gitea#36561) fix(diff): reprocess htmx content after loading more files (go-gitea#36568) [skip ci] Updated translations via Crowdin Add wrap to runner label list (go-gitea#36565) fix: add dnf5 command for Fedora in RPM package instructions (go-gitea#36527) Enable pagination on GiteaDownloader.getIssueReactions() (go-gitea#36549) Refactor merge conan and container auth preserve actions taskID (go-gitea#36560) Fix assignee sidebar links and empty placeholder after go-gitea#32465 refactor (go-gitea#36559) Fix various version parsing problems (go-gitea#36553) ...
2 parents fae13bf + 2876800 commit a4d46ca

201 files changed

Lines changed: 3125 additions & 2035 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,6 @@ prime/
121121
/.goosehints
122122
/.windsurfrules
123123
/.github/copilot-instructions.md
124-
/AGENT.md
125-
/CLAUDE.md
126124
/llms.txt
127125

128126
# Ignore worktrees when working on multiple branches

AGENTS.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# Instructions for agents
22

33
- Use `make help` to find available development targets
4-
- Use the latest Golang stable release when working on Go code
5-
- Use the latest Node.js LTS release when working on TypeScript code
64
- Before committing `.go` changes, run `make fmt` to format, and run `make lint-go` to lint
75
- Before committing `.ts` changes, run `make lint-js` to lint
86
- Before committing `go.mod` changes, run `make tidy`

CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@AGENTS.md

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22
# Build stage
3-
FROM docker.io/library/golang:1.25-alpine3.23 AS build-env
3+
FROM docker.io/library/golang:1.26-alpine3.23 AS build-env
44

55
ARG GOPROXY=direct
66

Dockerfile.rootless

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22
# Build stage
3-
FROM docker.io/library/golang:1.25-alpine3.23 AS build-env
3+
FROM docker.io/library/golang:1.26-alpine3.23 AS build-env
44

55
ARG GOPROXY=direct
66

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ XGO_VERSION := go-1.25.x
3232
AIR_PACKAGE ?= github.com/air-verse/air@v1
3333
EDITORCONFIG_CHECKER_PACKAGE ?= github.com/editorconfig-checker/editorconfig-checker/v3/cmd/editorconfig-checker@v3
3434
GOFUMPT_PACKAGE ?= mvdan.cc/gofumpt@v0.9.2
35-
GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.8.0
35+
GOLANGCI_LINT_PACKAGE ?= github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.9.0
3636
GXZ_PACKAGE ?= github.com/ulikunitz/xz/cmd/gxz@v0.5.15
3737
MISSPELL_PACKAGE ?= github.com/golangci/misspell/cmd/misspell@v0.7.0
3838
SWAGGER_PACKAGE ?= github.com/go-swagger/go-swagger/cmd/swagger@v0.33.1

assets/go-licenses.json

Lines changed: 25 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/admin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ func runRepoSyncReleases(ctx context.Context, _ *cli.Command) error {
134134
}
135135
log.Trace(" currentNumReleases is %d, running SyncReleasesWithTags", oldnum)
136136

137-
if err = repo_module.SyncReleasesWithTags(ctx, repo, gitRepo); err != nil {
137+
if _, err = repo_module.SyncReleasesWithTags(ctx, repo, gitRepo); err != nil {
138138
log.Warn(" SyncReleasesWithTags: %v", err)
139139
gitRepo.Close()
140140
continue

eslint.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ export default defineConfig([
342342
'import-x/first': [2],
343343
'import-x/group-exports': [0],
344344
'import-x/max-dependencies': [0],
345-
'import-x/named': [2],
345+
'import-x/named': [0],
346346
'import-x/namespace': [0],
347347
'import-x/newline-after-import': [0],
348348
'import-x/no-absolute-path': [0],
@@ -987,7 +987,7 @@ export default defineConfig([
987987
'vitest/require-to-throw-message': [0],
988988
'vitest/require-top-level-describe': [0],
989989
'vitest/valid-describe-callback': [2],
990-
'vitest/valid-expect': [2],
990+
'vitest/valid-expect': [2, {maxArgs: 2}],
991991
'vitest/valid-title': [2],
992992
},
993993
},

go.mod

Lines changed: 59 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module code.gitea.io/gitea
22

3-
go 1.25.0
4-
5-
toolchain go1.25.6
3+
go 1.26.0
64

75
// rfc5280 said: "The serial number is an integer assigned by the CA to each certificate."
86
// But some CAs use negative serial number, just relax the check. related:
@@ -11,9 +9,9 @@ godebug x509negativeserial=1
119

1210
require (
1311
code.gitea.io/actions-proto-go v0.4.1
14-
code.gitea.io/sdk/gitea v0.22.0
12+
code.gitea.io/sdk/gitea v0.23.2
1513
codeberg.org/gusted/mcaptcha v0.0.0-20220723083913-4f3072e1d570
16-
connectrpc.com/connect v1.18.1
14+
connectrpc.com/connect v1.19.1
1715
gitea.com/go-chi/binding v0.0.0-20240430071103-39a851e106ed
1816
gitea.com/go-chi/cache v0.2.1
1917
gitea.com/go-chi/captcha v0.0.0-20240315150714-fb487f629098
@@ -26,22 +24,22 @@ require (
2624
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.6.2
2725
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358
2826
github.com/ProtonMail/go-crypto v1.3.0
29-
github.com/PuerkitoBio/goquery v1.10.3
27+
github.com/PuerkitoBio/goquery v1.11.0
3028
github.com/SaveTheRbtz/zstd-seekable-format-go/pkg v0.8.0
3129
github.com/alecthomas/chroma/v2 v2.23.1
32-
github.com/aws/aws-sdk-go-v2/credentials v1.18.10
33-
github.com/aws/aws-sdk-go-v2/service/codecommit v1.32.2
30+
github.com/aws/aws-sdk-go-v2/credentials v1.19.7
31+
github.com/aws/aws-sdk-go-v2/service/codecommit v1.33.8
3432
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb
35-
github.com/blevesearch/bleve/v2 v2.5.3
33+
github.com/blevesearch/bleve/v2 v2.5.7
3634
github.com/bohde/codel v0.2.0
3735
github.com/buildkite/terminal-to-html/v3 v3.16.8
38-
github.com/caddyserver/certmagic v0.24.0
36+
github.com/caddyserver/certmagic v0.25.1
3937
github.com/charmbracelet/git-lfs-transfer v0.1.1-0.20251013092601-6327009efd21
4038
github.com/chi-middleware/proxy v1.1.1
4139
github.com/dimiro1/reply v0.0.0-20200315094148-d0136a4c9e21
4240
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707
4341
github.com/dustin/go-humanize v1.0.1
44-
github.com/editorconfig/editorconfig-core-go/v2 v2.6.3
42+
github.com/editorconfig/editorconfig-core-go/v2 v2.6.4
4543
github.com/emersion/go-imap v1.2.1
4644
github.com/emirpasic/gods v1.18.1
4745
github.com/ethantkoenig/rupture v1.0.1
@@ -50,53 +48,53 @@ require (
5048
github.com/gliderlabs/ssh v0.3.8
5149
github.com/go-ap/activitypub v0.0.0-20250810115208-cb73b20a1742
5250
github.com/go-ap/jsonld v0.0.0-20221030091449-f2a191312c73
53-
github.com/go-chi/chi/v5 v5.2.4
51+
github.com/go-chi/chi/v5 v5.2.5
5452
github.com/go-chi/cors v1.2.2
5553
github.com/go-co-op/gocron v1.37.0
5654
github.com/go-enry/go-enry/v2 v2.9.4
57-
github.com/go-git/go-billy/v5 v5.6.2
58-
github.com/go-git/go-git/v5 v5.16.3
59-
github.com/go-ldap/ldap/v3 v3.4.11
60-
github.com/go-redsync/redsync/v4 v4.13.0
55+
github.com/go-git/go-billy/v5 v5.7.0
56+
github.com/go-git/go-git/v5 v5.16.4
57+
github.com/go-ldap/ldap/v3 v3.4.12
58+
github.com/go-redsync/redsync/v4 v4.15.0
6159
github.com/go-sql-driver/mysql v1.9.3
6260
github.com/go-webauthn/webauthn v0.13.4
6361
github.com/goccy/go-json v0.10.5
6462
github.com/gogs/chardet v0.0.0-20211120154057-b7413eaefb8f
6563
github.com/gogs/go-gogs-client v0.0.0-20210131175652-1d7215cd8d85
66-
github.com/golang-jwt/jwt/v5 v5.3.0
64+
github.com/golang-jwt/jwt/v5 v5.3.1
6765
github.com/google/go-github/v74 v74.0.0
6866
github.com/google/licenseclassifier/v2 v2.0.0
69-
github.com/google/pprof v0.0.0-20250820193118-f64d9cf942d6
67+
github.com/google/pprof v0.0.0-20260202012954-cb029daf43ef
7068
github.com/google/uuid v1.6.0
7169
github.com/gorilla/feeds v1.2.0
7270
github.com/gorilla/sessions v1.4.0
73-
github.com/hashicorp/go-version v1.7.0
71+
github.com/hashicorp/go-version v1.8.0
7472
github.com/hashicorp/golang-lru/v2 v2.0.7
7573
github.com/huandu/xstrings v1.5.0
7674
github.com/jaytaylor/html2text v0.0.0-20230321000545-74c2419ad056
7775
github.com/jhillyerd/enmime v1.3.0
7876
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
79-
github.com/klauspost/compress v1.18.0
77+
github.com/klauspost/compress v1.18.3
8078
github.com/klauspost/cpuid/v2 v2.3.0
81-
github.com/lib/pq v1.10.9
79+
github.com/lib/pq v1.11.1
8280
github.com/markbates/goth v1.82.0
8381
github.com/mattn/go-isatty v0.0.20
84-
github.com/mattn/go-sqlite3 v1.14.32
85-
github.com/meilisearch/meilisearch-go v0.33.2
86-
github.com/mholt/archives v0.0.0-20251009205813-e30ac6010726
82+
github.com/mattn/go-sqlite3 v1.14.33
83+
github.com/meilisearch/meilisearch-go v0.36.0
84+
github.com/mholt/archives v0.1.5
8785
github.com/microcosm-cc/bluemonday v1.0.27
88-
github.com/microsoft/go-mssqldb v1.9.3
89-
github.com/minio/minio-go/v7 v7.0.95
86+
github.com/microsoft/go-mssqldb v1.9.6
87+
github.com/minio/minio-go/v7 v7.0.98
9088
github.com/msteinert/pam v1.2.0
9189
github.com/nektos/act v0.2.63
9290
github.com/niklasfasching/go-org v1.9.1
9391
github.com/olivere/elastic/v7 v7.0.32
9492
github.com/opencontainers/go-digest v1.0.0
9593
github.com/opencontainers/image-spec v1.1.1
9694
github.com/pquerna/otp v1.5.0
97-
github.com/prometheus/client_golang v1.23.0
95+
github.com/prometheus/client_golang v1.23.2
9896
github.com/quasoft/websspi v1.1.2
99-
github.com/redis/go-redis/v9 v9.12.1
97+
github.com/redis/go-redis/v9 v9.17.3
10098
github.com/robfig/cron/v3 v3.0.1
10199
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
102100
github.com/sassoftware/go-rpmutils v0.4.0
@@ -114,25 +112,25 @@ require (
114112
github.com/yuin/goldmark-highlighting/v2 v2.0.0-20230729083705-37449abec8cc
115113
github.com/yuin/goldmark-meta v1.1.0
116114
gitlab.com/gitlab-org/api/client-go v0.142.4
117-
golang.org/x/crypto v0.45.0
118-
golang.org/x/image v0.30.0
119-
golang.org/x/net v0.47.0
120-
golang.org/x/oauth2 v0.30.0
121-
golang.org/x/sync v0.18.0
122-
golang.org/x/sys v0.38.0
123-
golang.org/x/text v0.31.0
124-
google.golang.org/grpc v1.75.0
125-
google.golang.org/protobuf v1.36.8
126-
gopkg.in/ini.v1 v1.67.0
115+
golang.org/x/crypto v0.47.0
116+
golang.org/x/image v0.35.0
117+
golang.org/x/net v0.49.0
118+
golang.org/x/oauth2 v0.34.0
119+
golang.org/x/sync v0.19.0
120+
golang.org/x/sys v0.40.0
121+
golang.org/x/text v0.33.0
122+
google.golang.org/grpc v1.78.0
123+
google.golang.org/protobuf v1.36.11
124+
gopkg.in/ini.v1 v1.67.1
127125
gopkg.in/yaml.v3 v3.0.1
128126
mvdan.cc/xurls/v2 v2.6.0
129127
strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251
130128
xorm.io/builder v0.3.13
131-
xorm.io/xorm v1.3.10
129+
xorm.io/xorm v1.3.11
132130
)
133131

134132
require (
135-
cloud.google.com/go/compute/metadata v0.8.0 // indirect
133+
cloud.google.com/go/compute/metadata v0.9.0 // indirect
136134
code.gitea.io/gitea-vet v0.2.3 // indirect
137135
dario.cat/mergo v1.0.2 // indirect
138136
filippo.io/edwards25519 v1.1.0 // indirect
@@ -145,20 +143,20 @@ require (
145143
github.com/andybalholm/brotli v1.2.0 // indirect
146144
github.com/andybalholm/cascadia v1.3.3 // indirect
147145
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be // indirect
148-
github.com/aws/aws-sdk-go-v2 v1.38.3 // indirect
149-
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.6 // indirect
150-
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.6 // indirect
151-
github.com/aws/smithy-go v1.23.0 // indirect
146+
github.com/aws/aws-sdk-go-v2 v1.41.1 // indirect
147+
github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.17 // indirect
148+
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.17 // indirect
149+
github.com/aws/smithy-go v1.24.0 // indirect
152150
github.com/aymerick/douceur v0.2.0 // indirect
153151
github.com/beorn7/perks v1.0.1 // indirect
154152
github.com/bits-and-blooms/bitset v1.24.0 // indirect
155-
github.com/blevesearch/bleve_index_api v1.2.9 // indirect
153+
github.com/blevesearch/bleve_index_api v1.2.11 // indirect
156154
github.com/blevesearch/geo v0.2.4 // indirect
157-
github.com/blevesearch/go-faiss v1.0.25 // indirect
155+
github.com/blevesearch/go-faiss v1.0.26 // indirect
158156
github.com/blevesearch/go-porterstemmer v1.0.3 // indirect
159157
github.com/blevesearch/gtreap v0.1.1 // indirect
160158
github.com/blevesearch/mmap-go v1.0.4 // indirect
161-
github.com/blevesearch/scorch_segment_api/v2 v2.3.11 // indirect
159+
github.com/blevesearch/scorch_segment_api/v2 v2.3.13 // indirect
162160
github.com/blevesearch/segment v0.9.1 // indirect
163161
github.com/blevesearch/snowballstem v0.9.0 // indirect
164162
github.com/blevesearch/upsidedown_store_api v1.0.2 // indirect
@@ -168,14 +166,14 @@ require (
168166
github.com/blevesearch/zapx/v13 v13.4.2 // indirect
169167
github.com/blevesearch/zapx/v14 v14.4.2 // indirect
170168
github.com/blevesearch/zapx/v15 v15.4.2 // indirect
171-
github.com/blevesearch/zapx/v16 v16.2.4 // indirect
169+
github.com/blevesearch/zapx/v16 v16.2.8 // indirect
172170
github.com/bmatcuk/doublestar/v4 v4.9.1 // indirect
173171
github.com/bodgit/plumbing v1.3.0 // indirect
174172
github.com/bodgit/sevenzip v1.6.1 // indirect
175173
github.com/bodgit/windows v1.0.1 // indirect
176174
github.com/boombuler/barcode v1.1.0 // indirect
177175
github.com/bradfitz/gomemcache v0.0.0-20250403215159-8d39553ac7cf // indirect
178-
github.com/caddyserver/zerossl v0.1.3 // indirect
176+
github.com/caddyserver/zerossl v0.1.4 // indirect
179177
github.com/cention-sany/utf7 v0.0.0-20170124080048-26cad61bd60a // indirect
180178
github.com/cespare/xxhash/v2 v2.3.0 // indirect
181179
github.com/cloudflare/circl v1.6.1 // indirect
@@ -199,11 +197,9 @@ require (
199197
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
200198
github.com/go-ini/ini v1.67.0 // indirect
201199
github.com/go-webauthn/x v0.1.24 // indirect
202-
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
203200
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
204201
github.com/golang-sql/sqlexp v0.1.0 // indirect
205202
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
206-
github.com/golang/protobuf v1.5.4 // indirect
207203
github.com/golang/snappy v1.0.0 // indirect
208204
github.com/google/btree v1.1.3 // indirect
209205
github.com/google/flatbuffers v25.2.10+incompatible // indirect
@@ -220,15 +216,16 @@ require (
220216
github.com/josharian/intern v1.0.0 // indirect
221217
github.com/json-iterator/go v1.1.12 // indirect
222218
github.com/kevinburke/ssh_config v1.4.0 // indirect
219+
github.com/klauspost/crc32 v1.3.0 // indirect
223220
github.com/klauspost/pgzip v1.2.6 // indirect
224221
github.com/libdns/libdns v1.1.1 // indirect
225222
github.com/mailru/easyjson v0.9.0 // indirect
226223
github.com/markbates/going v1.0.3 // indirect
227224
github.com/mattn/go-colorable v0.1.14 // indirect
228225
github.com/mattn/go-runewidth v0.0.16 // indirect
229226
github.com/mattn/go-shellwords v1.0.12 // indirect
230-
github.com/mholt/acmez/v3 v3.1.2 // indirect
231-
github.com/miekg/dns v1.1.68 // indirect
227+
github.com/mholt/acmez/v3 v3.1.4 // indirect
228+
github.com/miekg/dns v1.1.69 // indirect
232229
github.com/mikelolasagasti/xz v1.0.1 // indirect
233230
github.com/minio/crc64nvme v1.1.1 // indirect
234231
github.com/minio/md5-simd v1.1.2 // indirect
@@ -251,18 +248,19 @@ require (
251248
github.com/pkg/errors v0.9.1 // indirect
252249
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
253250
github.com/prometheus/client_model v0.6.2 // indirect
254-
github.com/prometheus/common v0.65.0 // indirect
251+
github.com/prometheus/common v0.66.1 // indirect
255252
github.com/prometheus/procfs v0.17.0 // indirect
256253
github.com/rhysd/actionlint v1.7.7 // indirect
257254
github.com/rivo/uniseg v0.4.7 // indirect
258255
github.com/rs/xid v1.6.0 // indirect
259256
github.com/russross/blackfriday/v2 v2.1.0 // indirect
257+
github.com/shopspring/decimal v1.4.0 // indirect
260258
github.com/sirupsen/logrus v1.9.3 // indirect
261259
github.com/skeema/knownhosts v1.3.1 // indirect
262260
github.com/sorairolake/lzip-go v0.3.8 // indirect
263261
github.com/spf13/afero v1.15.0 // indirect
264262
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
265-
github.com/tinylib/msgp v1.4.0 // indirect
263+
github.com/tinylib/msgp v1.6.1 // indirect
266264
github.com/unknwon/com v1.0.1 // indirect
267265
github.com/valyala/fastjson v1.6.4 // indirect
268266
github.com/x448/float16 v0.8.4 // indirect
@@ -275,14 +273,16 @@ require (
275273
go.etcd.io/bbolt v1.4.3 // indirect
276274
go.uber.org/atomic v1.11.0 // indirect
277275
go.uber.org/multierr v1.11.0 // indirect
278-
go.uber.org/zap v1.27.0 // indirect
276+
go.uber.org/zap v1.27.1 // indirect
279277
go.uber.org/zap/exp v0.3.0 // indirect
278+
go.yaml.in/yaml/v2 v2.4.2 // indirect
279+
go.yaml.in/yaml/v3 v3.0.4 // indirect
280280
go4.org v0.0.0-20230225012048-214862532bf5 // indirect
281281
golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b // indirect
282-
golang.org/x/mod v0.29.0 // indirect
282+
golang.org/x/mod v0.31.0 // indirect
283283
golang.org/x/time v0.12.0 // indirect
284-
golang.org/x/tools v0.38.0 // indirect
285-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250826171959-ef028d996bc1 // indirect
284+
golang.org/x/tools v0.40.0 // indirect
285+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda // indirect
286286
gopkg.in/warnings.v0 v0.1.2 // indirect
287287
gopkg.in/yaml.v2 v2.4.0 // indirect
288288
)
@@ -294,8 +294,6 @@ ignore (
294294

295295
replace github.com/jaytaylor/html2text => github.com/Necoro/html2text v0.0.0-20250804200300-7bf1ce1c7347
296296

297-
replace github.com/hashicorp/go-version => github.com/6543/go-version v1.3.1
298-
299297
replace github.com/nektos/act => gitea.com/gitea/act v0.261.7-0.20251003180512-ac6e4b751763
300298

301299
replace git.sr.ht/~mariusor/go-xsd-duration => gitea.com/gitea/go-xsd-duration v0.0.0-20220703122237-02e73435a078

0 commit comments

Comments
 (0)