Renovate Bot and Renovate Bot
1914cfd6b9
chore(deps): update workflow dependencies (minor & patch) ( #1060 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-04-04 00:17:04 +00:00
alexandru-marianlita and Markus Pesch
e8dff81392
fix: broken pipe in change-password help probe ( #1052 )
...
### Description of the change
This change fixes an intermittent failure in the init password-reset flow caused by the CLI feature probe used to detect `--must-change-password` support.
The current probe uses:
`gitea admin user change-password --help | grep -qF -- '--must-change-password'`
Because `grep -q` exits immediately after the first match, it can close the pipe while gitea is still writing help output. In that case, gitea may return broken pipe.
This is timing-dependent, so it only reproduces sometimes with the same binary.
This PR replaces that check with a form that consumes the full output before exiting, avoiding premature pipe closure.
### Benefits
- Prevents intermittent broken pipe failures during init
- Makes password-reset capability detection deterministic
### Applicable issues
- Fixes #1051
### Additional information
No test update was required for this change.
The fix only adjusts the shell pipeline used in the rendered init script to avoid an intermittent broken pipe during the `--must-change-password` capability check. There are currently no existing Helm or bash unit tests covering this specific command path in the chart, and this change does not alter chart values, rendered resource structure, or template interfaces.
### Checklist
- [x] Bash unittests are added (required when changing anything in `scripts` folder)
Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/1052
Co-authored-by: alexandru-marianlita <alexandru-marian.lita@spirent.com >
Co-committed-by: alexandru-marianlita <alexandru-marian.lita@spirent.com >
2026-04-02 20:30:56 +00:00
Renovate Bot and Renovate Bot
4036f02c19
chore(deps): update lockfiles ( #1058 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-04-02 00:22:34 +00:00
Renovate Bot and Renovate Bot
59c510fc0e
chore(deps): update lockfiles ( #1057 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-04-01 00:20:42 +00:00
Renovate Bot and Renovate Bot
5e4de283d7
chore(deps): update lockfiles ( #1055 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-31 00:21:46 +00:00
Renovate Bot and Renovate Bot
794aa4f96c
chore(deps): update lockfiles ( #1054 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-28 00:20:54 +00:00
Renovate Bot and Renovate Bot
675a66a12d
chore(deps): update lockfiles ( #1053 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-27 00:20:59 +00:00
Renovate Bot and Renovate Bot
27c334d4dc
chore(deps): update lockfiles ( #1050 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-25 00:24:39 +00:00
Renovate Bot and Renovate Bot
8d7ecd02e9
chore(deps): update lockfiles ( #1049 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-24 00:24:04 +00:00
Renovate Bot and Renovate Bot
92015afb10
chore(deps): update lockfiles ( #1048 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-22 00:21:52 +00:00
Ross Golder and techknowlogick
8b1cac117a
docs: remove myself from maintainers list ( #1047 )
...
For various internal reasons we're not currently running gitea via the Helm chart right now, so I'm not in the same position I was before to review and test patches.
Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/1047
Co-authored-by: Ross Golder <ross@golder.org >
Co-committed-by: Ross Golder <ross@golder.org >
2026-03-21 01:16:07 +00:00
Renovate Bot and Renovate Bot
717bfb61da
chore(deps): update commitlint/commitlint docker tag to v20.5.0 ( #1046 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-21 00:18:55 +00:00
Renovate Bot and Renovate Bot
8034f75fa1
chore(deps): update lockfiles ( #1045 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-21 00:11:02 +00:00
Renovate Bot and Renovate Bot
9601822aff
chore(deps): update workflow dependencies (minor & patch) ( #1044 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-15 00:04:17 +00:00
Renovate Bot and Renovate Bot
0e2d0a0229
chore(deps): update dependency go-gitea/gitea to v1.25.5 ( #1043 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-14 00:17:12 +00:00
e673346bb8
Support to read environment variables from file in init containers ( #993 )
...
### Description of the change
Gitea supports providing DB and Redis/ValKey secrets via env variables, current chart requires DB and Redis/ ValKey credentials reading from k8s secret as per below values.yaml snippet. This approach requires secret to be created beforehand.
```
- name: GITEA__database__USER
valueFrom:
secretKeyRef:
name: gitea-ha
key: db_user
- name: GITEA__database__PASSWD
valueFrom:
secretKeyRef:
name: gitea-ha
key: db_password
```
Other approach is to provide the credentials in values.yaml which isnt secure.
A bash variable file can be created by using vault injector like this, which then can be sourced while running `config_environment.sh` in `init-app-ini`
```
GITEA__database__NAME=gitea
GITEA__database__USER=gitea_user
```
Support to read env variables from file
Reference: https://developer.hashicorp.com/vault/docs/deploy/kubernetes/injector/examples#environment-variable-example
### Benefits
Support to read env variables from file created by vault injector for DB and redis/ valkey credentials
Support to set gitea admin user and credentials via env variables from file created by vault injector
### Possible drawbacks
N/A
### âš BREAKING
No breaking changes
### Checklist
- [X] Parameters are documented in the `values.yaml` and added to the `README.md` using [readme-generator-for-helm](https://github.com/bitnami-labs/readme-generator-for-helm )
---------
Co-authored-by: techknowlogick <techknowlogick@gitea.com >
Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/993
Co-authored-by: deepakdeore2004 <deepakdeore2004@noreply.gitea.com >
Co-committed-by: deepakdeore2004 <deepakdeore2004@noreply.gitea.com >
2026-03-12 19:12:26 +00:00
Renovate Bot and Renovate Bot
be3c6f232a
chore(deps): update lockfiles ( #1040 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-09 00:23:46 +00:00
Renovate Bot and Renovate Bot
fd558004df
chore(deps): update lockfiles ( #1039 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-08 00:26:09 +00:00
Renovate Bot and Renovate Bot
9f50a4d8e6
chore(deps): update workflow dependencies (minor & patch) ( #1037 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-07 00:20:34 +00:00
Renovate Bot and Renovate Bot
9c54a7141d
chore(deps): update lockfiles ( #1036 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-03-06 00:26:34 +00:00
Renovate Bot and Renovate Bot
94dc4cb959
chore(deps): update lockfiles ( #1035 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-28 00:22:21 +00:00
Renovate Bot and Renovate Bot
e37b9bf7b5
chore(deps): update lockfiles ( #1033 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-27 00:24:15 +00:00
Renovate Bot and Renovate Bot
94f2b8e26d
chore(deps): update lockfiles ( #1032 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-26 00:24:24 +00:00
Renovate Bot and Renovate Bot
d51e459d35
chore(deps): update lockfiles ( #1031 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-24 00:24:44 +00:00
Renovate Bot and Renovate Bot
ffdb192c59
chore(deps): update lockfiles ( #1030 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-24 00:10:39 +00:00
Renovate Bot and Renovate Bot
d537d5d9ec
chore(deps): update commitlint/commitlint docker tag to v20.4.2 ( #1029 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-21 00:16:58 +00:00
Renovate Bot and Renovate Bot
02e181b659
chore(deps): update lockfiles ( #1028 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-19 00:24:08 +00:00
Renovate Bot and Renovate Bot
30dbe405cb
chore(deps): update lockfiles ( #1026 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-13 00:23:01 +00:00
Renovate Bot and Renovate Bot
0eed2385cc
chore(deps): update lockfiles ( #1025 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-12 00:22:33 +00:00
Renovate Bot and techknowlogick
d8265c8bd5
chore(deps): update https://github.com/aws-actions/configure-aws-credentials action to v6 ( #1024 )
...
Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/1024
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-08 23:14:37 +00:00
Renovate Bot and techknowlogick
6af304e270
chore(deps): update commitlint/commitlint docker tag to v20.4.1 ( #1021 )
...
Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/1021
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-07 00:16:24 +00:00
Renovate Bot and Renovate Bot
9e5e86aa8e
chore(deps): update unittests/bash/test_helper/bats-mock digest to 9c239d6 ( #1020 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-07 00:15:28 +00:00
Renovate Bot and Renovate Bot
44c279c4cd
chore(deps): update lockfiles ( #1019 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-04 00:22:43 +00:00
Renovate Bot and Renovate Bot
458605ddb6
chore(deps): update lockfiles ( #1018 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-02 00:23:27 +00:00
Renovate Bot and Renovate Bot
70653c83e6
chore(deps): update commitlint/commitlint docker tag to v20.4.0 ( #1017 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-02-01 00:03:31 +00:00
Renovate Bot and Renovate Bot
c02a65fc82
chore(deps): update lockfiles ( #1015 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-01-27 00:08:07 +00:00
Renovate Bot and Renovate Bot
f6cc35f2a8
chore(deps): update workflow dependencies (minor & patch) ( #1014 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-01-26 00:03:28 +00:00
Renovate Bot and Renovate Bot
7e58847b23
chore(deps): update bats testing framework ( #1013 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-01-25 00:04:12 +00:00
David Chatterton and Markus Pesch
3cc94ca9a6
fix(valkey): suppress search domain queries for valkeys headless service [ Close #972 ] ( #982 )
...
changelog / changelog (push) Successful in 7s
check-and-test / check-and-test (push) Successful in 1m31s
### Description of the change
I've added the root label to the valkey domain that is searched by nc in the `configure_gitea.sh` script.
Here is an example of what the `test_valkey_connection` function will look like to the `configure-gitea` container:
```
function test_valkey_connection() {
local RETRY=0
local MAX=30
echo 'Wait for valkey to become avialable...'
until [ "${RETRY}" -ge "${MAX}" ]; do
nc -vz -w2 gitea-dev-valkey-cluster-headless.gitea-dev.svc.cluster.local. 6379 && break
RETRY=$[${RETRY}+1]
echo "...not ready yet (${RETRY}/${MAX})"
done
if [ "${RETRY}" -ge "${MAX}" ]; then
echo "Valkey not reachable after '${MAX}' attempts!"
exit 1
fi
}
```
### Benefits
If a search domain is set in resolve.conf, nc will append that root domain to the lookup, causing the lookup to fail. This will allow users to have a search domain set without causing the configure script to fail.
### Possible drawbacks
I don't believe there are any drawbacks, but let me know if I'm wrong.
### Applicable issues
gitea/helm-gitea#972
Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/982
Reviewed-by: Markus Pesch <volker.raschek@noreply.gitea.com >
Co-authored-by: David Chatterton <david@davidchatterton.com >
Co-committed-by: David Chatterton <david@davidchatterton.com >
2026-01-23 22:49:58 +00:00
volker.raschek
9bf4e11faa
fix(values): add missing persistence configuration of valkey primary and replica
changelog / changelog (push) Successful in 8s
check-and-test / check-and-test (push) Successful in 33s
2026-01-23 23:25:50 +01:00
volker.raschek
cf45403920
docs(README): add postgresql-ha.persistence.storageClass
changelog / changelog (push) Successful in 7s
check-and-test / check-and-test (push) Successful in 1m30s
2026-01-23 22:53:35 +01:00
volker.raschek
e87d534a23
fix(values): add options to disable persistence of dependencies
...
changelog / changelog (push) Successful in 7s
check-and-test / check-and-test (push) Failing after 1m26s
The following patch inherits the default values of the dependencies like
postgresql-ha, postgresql, valkey-cluster and valkey to disable persistent
storage.
For users, this is more obvious than having to look up the configuration options
in the dependencies or subcharts themselves.
2026-01-23 22:50:38 +01:00
Renovate Bot and Lunny Xiao
19bc25f85b
chore(deps): update dependency go-gitea/gitea to v1.25.4 ( #1012 )
...
changelog / changelog (push) Successful in 8s
check-and-test / check-and-test (push) Successful in 1m31s
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [go-gitea/gitea](https://github.com/go-gitea/gitea ) | patch | `1.25.3` -> `1.25.4` |
---
### Release Notes
<details>
<summary>go-gitea/gitea (go-gitea/gitea)</summary>
### [`v1.25.4`](https://github.com/go-gitea/gitea/releases/tag/v1.25.4 )
[Compare Source](https://github.com/go-gitea/gitea/compare/v1.25.3...v1.25.4 )
- SECURITY
- Release attachments must belong to the intended repo ([#​36347](https://github.com/go-gitea/gitea/issues/36347 )) ([#​36375](https://github.com/go-gitea/gitea/issues/36375 ))
- Fix permission check on org project operations ([#​36318](https://github.com/go-gitea/gitea/issues/36318 )) ([#​36373](https://github.com/go-gitea/gitea/issues/36373 ))
- Clean watches when make a repository private and check permission when send release emails ([#​36319](https://github.com/go-gitea/gitea/issues/36319 )) ([#​36370](https://github.com/go-gitea/gitea/issues/36370 ))
- Add more check for stopwatch read or list ([#​36340](https://github.com/go-gitea/gitea/issues/36340 )) ([#​36368](https://github.com/go-gitea/gitea/issues/36368 ))
- Fix openid setting check ([#​36346](https://github.com/go-gitea/gitea/issues/36346 )) ([#​36361](https://github.com/go-gitea/gitea/issues/36361 ))
- Fix cancel auto merge bug ([#​36341](https://github.com/go-gitea/gitea/issues/36341 )) ([#​36356](https://github.com/go-gitea/gitea/issues/36356 ))
- Fix delete attachment check ([#​36320](https://github.com/go-gitea/gitea/issues/36320 )) ([#​36355](https://github.com/go-gitea/gitea/issues/36355 ))
- LFS locks must belong to the intended repo ([#​36344](https://github.com/go-gitea/gitea/issues/36344 )) ([#​36349](https://github.com/go-gitea/gitea/issues/36349 ))
- Fix bug on notification read ([#​36339](https://github.com/go-gitea/gitea/issues/36339 )) [#​36387](https://github.com/go-gitea/gitea/issues/36387 )
- ENHANCEMENTS
- Add more routes to the "expensive" list ([#​36290](https://github.com/go-gitea/gitea/issues/36290 ))
- Make "commit statuses" API accept slashes in "ref" ([#​36264](https://github.com/go-gitea/gitea/issues/36264 )) ([#​36275](https://github.com/go-gitea/gitea/issues/36275 ))
- BUGFIXES
- Fix markdown newline handling during IME composition ([#​36421](https://github.com/go-gitea/gitea/issues/36421 )) [#​36424](https://github.com/go-gitea/gitea/issues/36424 )
- Fix missing repository id when migrating release attachments ([#​36389](https://github.com/go-gitea/gitea/issues/36389 ))
- Fix bug when compare in the pull request ([#​36363](https://github.com/go-gitea/gitea/issues/36363 )) ([#​36372](https://github.com/go-gitea/gitea/issues/36372 ))
- Fix incorrect text content detection ([#​36364](https://github.com/go-gitea/gitea/issues/36364 )) ([#​36369](https://github.com/go-gitea/gitea/issues/36369 ))
- Fill missing `has_code` in repository api ([#​36338](https://github.com/go-gitea/gitea/issues/36338 )) ([#​36359](https://github.com/go-gitea/gitea/issues/36359 ))
- Fix notifications pagination query parameters ([#​36351](https://github.com/go-gitea/gitea/issues/36351 )) ([#​36358](https://github.com/go-gitea/gitea/issues/36358 ))
- Fix some trivial problems ([#​36336](https://github.com/go-gitea/gitea/issues/36336 )) ([#​36337](https://github.com/go-gitea/gitea/issues/36337 ))
- Prevent panic when GitLab release has more links than sources ([#​36295](https://github.com/go-gitea/gitea/issues/36295 )) ([#​36305](https://github.com/go-gitea/gitea/issues/36305 ))
- Fix stats bug when syncing release ([#​36285](https://github.com/go-gitea/gitea/issues/36285 )) ([#​36294](https://github.com/go-gitea/gitea/issues/36294 ))
- Always honor user's choice for "delete branch after merge" ([#​36281](https://github.com/go-gitea/gitea/issues/36281 )) ([#​36286](https://github.com/go-gitea/gitea/issues/36286 ))
- Use the requested host for LFS links ([#​36242](https://github.com/go-gitea/gitea/issues/36242 )) ([#​36258](https://github.com/go-gitea/gitea/issues/36258 ))
- Fix panic when get editor config file ([#​36241](https://github.com/go-gitea/gitea/issues/36241 )) ([#​36247](https://github.com/go-gitea/gitea/issues/36247 ))
- Fix regression in writing authorized principals ([#​36213](https://github.com/go-gitea/gitea/issues/36213 )) ([#​36218](https://github.com/go-gitea/gitea/issues/36218 ))
- Fix WebAuthn error checking ([#​36219](https://github.com/go-gitea/gitea/issues/36219 )) ([#​36235](https://github.com/go-gitea/gitea/issues/36235 ))
Instances on **[Gitea Cloud](https://cloud.gitea.com )** will be automatically upgraded to this version during the specified maintenance window.
</details>
---
This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xOC4xIiwidXBkYXRlZEluVmVyIjoiNDEuMTguMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsia2luZC9kZXBlbmRlbmN5Il19-->
Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/1012
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-01-23 02:39:20 +00:00
Tarun Gaba and Markus Pesch
0d7368c5d0
fix(deployment): remove deployment.labels from selector.matchLabels ( #1011 )
...
changelog / changelog (push) Successful in 19s
check-and-test / check-and-test (push) Successful in 2m5s
This PR removes the inclusion of `deployment.labels` in the Deployment's `selector.matchLabels` field.
## Changes
- Removed the conditional block that adds `deployment.labels` to `selector.matchLabels`
- This ensures the selector remains immutable and only contains pod-identifying labels
Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/1011
Reviewed-by: Markus Pesch <volker.raschek@noreply.gitea.com >
Co-authored-by: Tarun Gaba <tarun.gaba7@gmail.com >
Co-committed-by: Tarun Gaba <tarun.gaba7@gmail.com >
2026-01-22 21:36:10 +00:00
Renovate Bot and Markus Pesch
648eee9f7d
chore(deps): update lockfiles ( #1009 )
...
Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/1009
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-01-22 19:55:06 +00:00
Renovate Bot and Renovate Bot
68e339e4f4
chore(deps): update lockfiles ( #1008 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-01-21 00:18:43 +00:00
Renovate Bot and Renovate Bot
7c62e52594
chore(deps): update lockfiles ( #1006 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2026-01-20 00:10:16 +00:00
Renovate Bot and Renovate Bot
b1106250fd
chore(deps): update unittests/bash/test_helper/bats-mock digest to db2acdc ( #1002 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2025-12-28 00:03:24 +00:00
Renovate Bot and Renovate Bot
4e303031d9
chore(deps): update unittests/bash/test_helper/bats-mock digest to c5674ff ( #1000 )
...
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2025-12-21 00:03:30 +00:00
Renovate Bot and techknowlogick
6d3137db96
chore(deps): update dependency go-gitea/gitea to v1.25.3 ( #999 )
...
Reviewed-on: https://gitea.com/gitea/helm-gitea/pulls/999
Co-authored-by: Renovate Bot <renovate-bot@gitea.com >
Co-committed-by: Renovate Bot <renovate-bot@gitea.com >
2025-12-19 17:57:52 +00:00