From 1e51423d3acd56603de59a81b9e8178619e5098a Mon Sep 17 00:00:00 2001 From: DaanSelen Date: Thu, 11 Sep 2025 03:49:34 +0000 Subject: [PATCH 1/5] chore(revert): revert docker info changes and rely on act_runner built-in init-stage (#48) This PR aims to revert the change were we introduce the `docker info` command as the checker for Docker readiness. We now rely on the act_runner's ability to do this itself. Co-authored-by: Daan Selen Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/48 Reviewed-by: ChristopherHX Reviewed-by: Lunny Xiao Co-authored-by: DaanSelen Co-committed-by: DaanSelen --- README.md | 2 +- templates/statefulset.yaml | 14 -------------- unittests/helm/statefulset.yaml | 2 +- values.yaml | 5 ++++- 4 files changed, 6 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 0f75d49..bd44fb9 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ If `.Values.image.rootless: true`, then the following will occur. In case you us | `statefulset.affinity` | Affinity for the statefulset | `{}` | | `statefulset.extraVolumes` | Extra volumes for the statefulset | `[]` | | `statefulset.actRunner.repository` | The Gitea act runner image | `gitea/act_runner` | -| `statefulset.actRunner.tag` | The Gitea act runner tag | `0.2.12` | +| `statefulset.actRunner.tag` | The Gitea act runner tag | `0.2.13` | | `statefulset.actRunner.pullPolicy` | The Gitea act runner pullPolicy | `IfNotPresent` | | `statefulset.actRunner.extraVolumeMounts` | Allows mounting extra volumes in the act runner container | `[]` | | `statefulset.actRunner.config` | Act runner custom configuration. See [Act Runner documentation](https://docs.gitea.com/usage/actions/act-runner#configuration) for details. | `Too complex. See values.yaml` | diff --git a/templates/statefulset.yaml b/templates/statefulset.yaml index 0c9868a..973ef06 100644 --- a/templates/statefulset.yaml +++ b/templates/statefulset.yaml @@ -48,20 +48,6 @@ spec: image: "{{ .Values.statefulset.actRunner.repository }}:{{ .Values.statefulset.actRunner.tag }}" imagePullPolicy: {{ .Values.statefulset.actRunner.pullPolicy }} workingDir: /data - command: - # The following is a workaround for: https://gitea.com/gitea/act_runner/issues/731 - # We must add the docker-cli package for the server AND client cert verification. - - sh - - -c - - | - apk add --no-cache docker-cli - echo "Waiting for Docker daemon..." - until timeout 10 docker info > /dev/null; do - echo "Failed, retrying..." - sleep 2 - done - echo "Docker is ready, starting act-runner..." - exec run.sh env: - name: DOCKER_HOST value: tcp://127.0.0.1:2376 diff --git a/unittests/helm/statefulset.yaml b/unittests/helm/statefulset.yaml index c6309fb..70c38a9 100644 --- a/unittests/helm/statefulset.yaml +++ b/unittests/helm/statefulset.yaml @@ -69,7 +69,7 @@ tests: name: gitea-unittests-actions-act-runner - equal: path: spec.template.metadata.annotations["checksum/config"] - value: "7566d9c60261bf8cbff6a6936fc7aead96cec540d8c793d142a5ad4664c56ba5" + value: "2bafbf04b3c4293c8ddf895ae3d908e14176ee54a6c724c8cf5b2a1e43c6ece7" - it: renders a StatefulSet http (with correct GITEA_INSTANCE_URL env from giteaRootURL) template: templates/statefulset.yaml set: diff --git a/values.yaml b/values.yaml index df9b708..c8cc025 100644 --- a/values.yaml +++ b/values.yaml @@ -39,7 +39,7 @@ statefulset: actRunner: repository: gitea/act_runner - tag: 0.2.12 + tag: 0.2.13 pullPolicy: IfNotPresent extraVolumeMounts: [] @@ -49,6 +49,9 @@ statefulset: level: debug cache: enabled: false + container: + require_docker: true + docker_timeout: 300s dind: repository: docker From 2457ccae5c8c4397b3fb6e4851567e790a911b48 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 11 Sep 2025 19:11:54 +0000 Subject: [PATCH 2/5] chore(config): migrate renovate config (#49) Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/49 Reviewed-by: techknowlogick Reviewed-by: DaanSelen Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- renovate.json5 | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/renovate.json5 b/renovate.json5 index b07d373..cc47df6 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -9,19 +9,19 @@ labels: [ 'kind/dependency', ], - "digest": { - "automerge": true + digest: { + automerge: true, }, automergeStrategy: 'squash', 'git-submodules': { - 'enabled': true + enabled: true, }, customManagers: [ { description: 'Gitea-version of https://docs.renovatebot.com/presets-regexManagers/#regexmanagersgithubactionsversions', customType: 'regex', - fileMatch: [ - '.gitea/workflows/.+\\.ya?ml$', + managerFilePatterns: [ + '/.gitea/workflows/.+\\.ya?ml$/', ], matchStrings: [ '# renovate: datasource=(?[a-z-.]+?) depName=(?[^\\s]+?)(?: (?:lookupName|packageName)=(?[^\\s]+?))?(?: versioning=(?[a-z-0-9]+?))?\\s+[A-Za-z0-9_]+?_VERSION\\s*:\\s*["\']?(?.+?)["\']?\\s', @@ -30,7 +30,9 @@ { description: 'Detect helm-unittest yaml schema file', customType: 'regex', - fileMatch: ['.vscode/settings\\.json$'], + managerFilePatterns: [ + '/.vscode/settings\\.json$/', + ], matchStrings: [ 'https:\\/\\/raw\\.githubusercontent\\.com\\/(?[^\\s]+?)\\/(?v[0-9.]+?)\\/schema\\/helm-testsuite\\.json', ], From 4be7971caa5e619726d58d94ebcfa2732b860ec5 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 12 Sep 2025 02:55:08 +0000 Subject: [PATCH 3/5] chore(deps): update actions/checkout action to v5 (#53) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://github.com/actions/checkout) | action | major | `v4` -> `v5` | | [actions/checkout](https://github.com/actions/checkout) | action | major | `v4.2.2` -> `v5` | --- ### Release Notes
actions/checkout (actions/checkout) ### [`v5`](https://github.com/actions/checkout/compare/v4...v5) [Compare Source](https://github.com/actions/checkout/compare/v4...v5)
--- ### Configuration 📅 **Schedule**: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Co-authored-by: Lunny Xiao Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/53 Reviewed-by: techknowlogick Reviewed-by: DaanSelen Reviewed-by: Lunny Xiao Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- .gitea/workflows/changelog.yml | 2 +- .gitea/workflows/commitlint.yml | 2 +- .gitea/workflows/release-version.yml | 2 +- .gitea/workflows/shellcheck.yml | 2 +- .gitea/workflows/test-pr.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/changelog.yml b/.gitea/workflows/changelog.yml index 585c117..3b558c3 100644 --- a/.gitea/workflows/changelog.yml +++ b/.gitea/workflows/changelog.yml @@ -13,7 +13,7 @@ jobs: - name: install tools run: | apk add -q --update --no-cache nodejs curl jq sed - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Generate upcoming changelog diff --git a/.gitea/workflows/commitlint.yml b/.gitea/workflows/commitlint.yml index b52cc38..ab788a9 100644 --- a/.gitea/workflows/commitlint.yml +++ b/.gitea/workflows/commitlint.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest container: commitlint/commitlint:19.7.1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: check PR title run: | echo "${{ gitea.event.pull_request.title }}" | commitlint --config .commitlintrc.json diff --git a/.gitea/workflows/release-version.yml b/.gitea/workflows/release-version.yml index 974c5c0..b0a720e 100644 --- a/.gitea/workflows/release-version.yml +++ b/.gitea/workflows/release-version.yml @@ -13,7 +13,7 @@ jobs: generate-chart-publish: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: install tools run: | apt update -y diff --git a/.gitea/workflows/shellcheck.yml b/.gitea/workflows/shellcheck.yml index 592c555..a9a2348 100644 --- a/.gitea/workflows/shellcheck.yml +++ b/.gitea/workflows/shellcheck.yml @@ -9,6 +9,6 @@ jobs: shellcheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.2.2 + - uses: actions/checkout@v5 - run: apt update --yes && apt install --yes shellcheck - run: find . -type f -name "*.sh" -exec shellcheck -a {} \; diff --git a/.gitea/workflows/test-pr.yml b/.gitea/workflows/test-pr.yml index c1d6f7f..5c7735f 100644 --- a/.gitea/workflows/test-pr.yml +++ b/.gitea/workflows/test-pr.yml @@ -25,7 +25,7 @@ jobs: uses: pnpm/action-setup@v4 with: version: 10 - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: install chart dependencies run: helm dependency build - name: lint From 6417e21627a75cdcbd052970d9bf30d357403c45 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 12 Sep 2025 02:58:14 +0000 Subject: [PATCH 4/5] chore(deps): update https://github.com/aws-actions/configure-aws-credentials action to v5 (#56) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [https://github.com/aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) | action | major | `v4` -> `v5` | --- ### Release Notes
aws-actions/configure-aws-credentials (https://github.com/aws-actions/configure-aws-credentials) ### [`v5`](https://github.com/aws-actions/configure-aws-credentials/compare/v4...v5) [Compare Source](https://github.com/aws-actions/configure-aws-credentials/compare/v4...v5)
--- ### Configuration 📅 **Schedule**: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Co-authored-by: Lunny Xiao Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/56 Reviewed-by: techknowlogick Reviewed-by: DaanSelen Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- .gitea/workflows/release-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/release-version.yml b/.gitea/workflows/release-version.yml index b0a720e..4a32907 100644 --- a/.gitea/workflows/release-version.yml +++ b/.gitea/workflows/release-version.yml @@ -59,7 +59,7 @@ jobs: helm registry logout registry-1.docker.io - name: aws credential configure - uses: https://github.com/aws-actions/configure-aws-credentials@v4 + uses: https://github.com/aws-actions/configure-aws-credentials@v5 with: aws-access-key-id: ${{ secrets.AWS_KEY_ID }} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} From a60844fc96408e7e57a76d881715237f3f558ba2 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 12 Sep 2025 02:59:02 +0000 Subject: [PATCH 5/5] chore(deps): update docker.io/thegeeklab/git-sv docker tag to v2 (#55) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [docker.io/thegeeklab/git-sv](https://github.com/thegeeklab/git-sv) | container | major | `1.0.12` -> `2.0.5` | --- ### Release Notes
thegeeklab/git-sv (docker.io/thegeeklab/git-sv) ### [`v2.0.5`](https://github.com/thegeeklab/git-sv/releases/tag/v2.0.5) [Compare Source](https://github.com/thegeeklab/git-sv/compare/v2.0.4...v2.0.5) #### v2.0.5 (2025-09-11) ##### Bug Fixes - **deps:** update golang devdeps non-major ([#​234](https://github.com/thegeeklab/git-sv/issues/234)) ([`906ac93`](https://github.com/thegeeklab/git-sv/commit/906ac93)) - **deps:** update module github.com/urfave/cli/v3 to v3.4.1 ([#​229](https://github.com/thegeeklab/git-sv/issues/229)) ([`46ad829`](https://github.com/thegeeklab/git-sv/commit/46ad829)) ##### Others - **docker:** update docker.io/library/golang:1.25.1 docker digest to [`bb979b2`](https://github.com/thegeeklab/git-sv/commit/bb979b2) ([#​236](https://github.com/thegeeklab/git-sv/issues/236)) ([`777c6f7`](https://github.com/thegeeklab/git-sv/commit/777c6f7)) - **docker:** update docker.io/library/golang:1.25.1 docker digest to [`1fd7d46`](https://github.com/thegeeklab/git-sv/commit/1fd7d46) ([#​235](https://github.com/thegeeklab/git-sv/issues/235)) ([`9179270`](https://github.com/thegeeklab/git-sv/commit/9179270)) - **deps:** update golang patch version ([#​233](https://github.com/thegeeklab/git-sv/issues/233)) ([`5df7f0b`](https://github.com/thegeeklab/git-sv/commit/5df7f0b)) - **docker:** update docker.io/library/golang:1.25.0 docker digest to [`5502b0e`](https://github.com/thegeeklab/git-sv/commit/5502b0e) ([#​232](https://github.com/thegeeklab/git-sv/issues/232)) ([`e9606bb`](https://github.com/thegeeklab/git-sv/commit/e9606bb)) - **docker:** update docker.io/library/golang:1.25.0 docker digest to [`4859242`](https://github.com/thegeeklab/git-sv/commit/4859242) ([#​230](https://github.com/thegeeklab/git-sv/issues/230)) ([`912792c`](https://github.com/thegeeklab/git-sv/commit/912792c)) - **deps:** update golang version ([#​225](https://github.com/thegeeklab/git-sv/issues/225)) ([`9de3510`](https://github.com/thegeeklab/git-sv/commit/9de3510)) - **deps:** update dependency golangci/golangci-lint to v2.4.0 ([#​228](https://github.com/thegeeklab/git-sv/issues/228)) ([`6293dce`](https://github.com/thegeeklab/git-sv/commit/6293dce)) - **docker:** update docker.io/library/golang:1.24.6 docker digest to [`e155b51`](https://github.com/thegeeklab/git-sv/commit/e155b51) ([#​227](https://github.com/thegeeklab/git-sv/issues/227)) ([`aa3abd8`](https://github.com/thegeeklab/git-sv/commit/aa3abd8)) - **docker:** update docker.io/library/golang:1.24.6 docker digest to [`0348485`](https://github.com/thegeeklab/git-sv/commit/0348485) ([#​226](https://github.com/thegeeklab/git-sv/issues/226)) ([`b12575f`](https://github.com/thegeeklab/git-sv/commit/b12575f)) - **deps:** update golang patch version ([#​224](https://github.com/thegeeklab/git-sv/issues/224)) ([`13207eb`](https://github.com/thegeeklab/git-sv/commit/13207eb)) - **deps:** update dependency golangci/golangci-lint to v2.3.1 ([#​223](https://github.com/thegeeklab/git-sv/issues/223)) ([`c28c428`](https://github.com/thegeeklab/git-sv/commit/c28c428)) ### [`v2.0.4`](https://github.com/thegeeklab/git-sv/releases/tag/v2.0.4) [Compare Source](https://github.com/thegeeklab/git-sv/compare/v2.0.3...v2.0.4) #### v2.0.4 (2025-07-29) ##### Others - **deps:** update dependency golangci/golangci-lint to v2.3.0 ([#​222](https://github.com/thegeeklab/git-sv/issues/222)) ([`79f929c`](https://github.com/thegeeklab/git-sv/commit/79f929c)) - **docker:** update docker.io/library/golang:1.24.5 docker digest to [`ef5b4be`](https://github.com/thegeeklab/git-sv/commit/ef5b4be) ([#​221](https://github.com/thegeeklab/git-sv/issues/221)) ([`66cf484`](https://github.com/thegeeklab/git-sv/commit/66cf484)) - **docker:** update docker.io/library/golang:1.24.5 docker digest to [`267159c`](https://github.com/thegeeklab/git-sv/commit/267159c) ([#​220](https://github.com/thegeeklab/git-sv/issues/220)) ([`08e6cd6`](https://github.com/thegeeklab/git-sv/commit/08e6cd6)) ### [`v2.0.3`](https://github.com/thegeeklab/git-sv/releases/tag/v2.0.3) [Compare Source](https://github.com/thegeeklab/git-sv/compare/v2.0.2...v2.0.3) #### v2.0.3 (2025-07-16) ##### Bug Fixes - **deps:** update module github.com/masterminds/semver/v3 to v3.4.0 ([#​213](https://github.com/thegeeklab/git-sv/issues/213)) ([`ef7b503`](https://github.com/thegeeklab/git-sv/commit/ef7b503)) ##### Others - **docker:** update docker.io/library/alpine:3.22 docker digest to [`4bcff63`](https://github.com/thegeeklab/git-sv/commit/4bcff63) ([#​219](https://github.com/thegeeklab/git-sv/issues/219)) ([`4ed486d`](https://github.com/thegeeklab/git-sv/commit/4ed486d)) - **deps:** update golang patch version ([#​218](https://github.com/thegeeklab/git-sv/issues/218)) ([`65bb3ce`](https://github.com/thegeeklab/git-sv/commit/65bb3ce)) - **deps:** update dependency golangci/golangci-lint to v2.2.2 ([#​217](https://github.com/thegeeklab/git-sv/issues/217)) ([`7fb6603`](https://github.com/thegeeklab/git-sv/commit/7fb6603)) - **docker:** update docker.io/library/golang:1.24.4 docker digest to [`20a022e`](https://github.com/thegeeklab/git-sv/commit/20a022e) ([#​216](https://github.com/thegeeklab/git-sv/issues/216)) ([`dc0e30a`](https://github.com/thegeeklab/git-sv/commit/dc0e30a)) - **docker:** update docker.io/library/golang:1.24.4 docker digest to [`764d7e0`](https://github.com/thegeeklab/git-sv/commit/764d7e0) ([#​215](https://github.com/thegeeklab/git-sv/issues/215)) ([`6576999`](https://github.com/thegeeklab/git-sv/commit/6576999)) - **deps:** update dependency golangci/golangci-lint to v2.2.1 ([#​214](https://github.com/thegeeklab/git-sv/issues/214)) ([`1ee648d`](https://github.com/thegeeklab/git-sv/commit/1ee648d)) ##### CI Pipeline - migrate to wsl\_v5 linter ([`ebec1bc`](https://github.com/thegeeklab/git-sv/commit/ebec1bc)) ### [`v2.0.2`](https://github.com/thegeeklab/git-sv/releases/tag/v2.0.2) [Compare Source](https://github.com/thegeeklab/git-sv/compare/v2.0.1...v2.0.2) #### v2.0.2 (2025-06-18) ##### Bug Fixes - fix key mismatch regression in go-git ([#​211](https://github.com/thegeeklab/git-sv/issues/211)) ([`0fc807c`](https://github.com/thegeeklab/git-sv/commit/0fc807c)) - **deps:** update module github.com/urfave/cli/v3 to v3.3.8 ([#​210](https://github.com/thegeeklab/git-sv/issues/210)) ([`60d42b3`](https://github.com/thegeeklab/git-sv/commit/60d42b3)) - **deps:** update module github.com/go-git/go-git/v5 to v5.16.2 ([#​206](https://github.com/thegeeklab/git-sv/issues/206)) ([`a1c7cb5`](https://github.com/thegeeklab/git-sv/commit/a1c7cb5)) - **deps:** update module github.com/go-git/go-git/v5 to v5.16.1 ([#​204](https://github.com/thegeeklab/git-sv/issues/204)) ([`90d574b`](https://github.com/thegeeklab/git-sv/commit/90d574b)) - **deps:** update module github.com/goccy/go-yaml to v1.18.0 ([#​201](https://github.com/thegeeklab/git-sv/issues/201)) ([`45a5374`](https://github.com/thegeeklab/git-sv/commit/45a5374)) - **deps:** update module github.com/urfave/cli/v3 to v3.3.3 ([#​200](https://github.com/thegeeklab/git-sv/issues/200)) ([`8e9809e`](https://github.com/thegeeklab/git-sv/commit/8e9809e)) ##### Others - **deps:** update docker.io/library/alpine docker tag to v3.22 ([#​202](https://github.com/thegeeklab/git-sv/issues/202)) ([`dcc839c`](https://github.com/thegeeklab/git-sv/commit/dcc839c)) - **docker:** update docker.io/library/golang:1.24.4 docker digest to [`10c1318`](https://github.com/thegeeklab/git-sv/commit/10c1318) ([#​209](https://github.com/thegeeklab/git-sv/issues/209)) ([`bcd32f0`](https://github.com/thegeeklab/git-sv/commit/bcd32f0)) - **docker:** update docker.io/library/golang:1.24.4 docker digest to [`3178db8`](https://github.com/thegeeklab/git-sv/commit/3178db8) ([#​208](https://github.com/thegeeklab/git-sv/issues/208)) ([`8b6a5f5`](https://github.com/thegeeklab/git-sv/commit/8b6a5f5)) - **docker:** update docker.io/library/golang:1.24.4 docker digest to [`d1db785`](https://github.com/thegeeklab/git-sv/commit/d1db785) ([#​207](https://github.com/thegeeklab/git-sv/issues/207)) ([`8e5df40`](https://github.com/thegeeklab/git-sv/commit/8e5df40)) - **deps:** update golang patch version ([#​205](https://github.com/thegeeklab/git-sv/issues/205)) ([`ea35ff9`](https://github.com/thegeeklab/git-sv/commit/ea35ff9)) - **docker:** update docker.io/library/golang:1.24.3 docker digest to [`81bf592`](https://github.com/thegeeklab/git-sv/commit/81bf592) ([#​203](https://github.com/thegeeklab/git-sv/issues/203)) ([`2ace1de`](https://github.com/thegeeklab/git-sv/commit/2ace1de)) - **deps:** update golang patch version ([#​199](https://github.com/thegeeklab/git-sv/issues/199)) ([`f7383bd`](https://github.com/thegeeklab/git-sv/commit/f7383bd)) ### [`v2.0.1`](https://github.com/thegeeklab/git-sv/releases/tag/v2.0.1) [Compare Source](https://github.com/thegeeklab/git-sv/compare/v2.0.0...v2.0.1) #### v2.0.1 (2025-05-09) ##### Bug Fixes - **deps:** update module dario.cat/mergo to v1.0.2 ([#​195](https://github.com/thegeeklab/git-sv/issues/195)) ([`3cac8ab`](https://github.com/thegeeklab/git-sv/commit/3cac8ab)) - **deps:** update module github.com/urfave/cli/v3 to v3.3.2 ([#​194](https://github.com/thegeeklab/git-sv/issues/194)) ([`6278830`](https://github.com/thegeeklab/git-sv/commit/6278830)) ##### Others - **deps:** update dependency golangci/golangci-lint to v2.1.6 ([#​193](https://github.com/thegeeklab/git-sv/issues/193)) ([`d63bf99`](https://github.com/thegeeklab/git-sv/commit/d63bf99)) ##### CI Pipeline - use github token for link check ([`780f384`](https://github.com/thegeeklab/git-sv/commit/780f384)) ### [`v2.0.0`](https://github.com/thegeeklab/git-sv/releases/tag/v2.0.0) [Compare Source](https://github.com/thegeeklab/git-sv/compare/v1.0.14...v2.0.0) #### v2.0.0 (2025-04-30) ##### Bug Fixes - **deps:** update module github.com/urfave/cli/v3 to v3.3.1 ([#​190](https://github.com/thegeeklab/git-sv/issues/190)) ([`6c0e0f8`](https://github.com/thegeeklab/git-sv/commit/6c0e0f8)) ##### Code Refactoring - migrate git commands to go-git ([#​188](https://github.com/thegeeklab/git-sv/issues/188)) ([`accf3d1`](https://github.com/thegeeklab/git-sv/commit/accf3d1)) ##### Others - **docker:** update docker.io/library/golang:1.24.2 docker digest to [`30baaea`](https://github.com/thegeeklab/git-sv/commit/30baaea) ([#​191](https://github.com/thegeeklab/git-sv/issues/191)) ([`9b411e2`](https://github.com/thegeeklab/git-sv/commit/9b411e2)) - **deps:** update dependency golangci/golangci-lint to v2.1.5 ([#​189](https://github.com/thegeeklab/git-sv/issues/189)) ([`400bb96`](https://github.com/thegeeklab/git-sv/commit/400bb96)) - add tests for git exec commands ([#​187](https://github.com/thegeeklab/git-sv/issues/187)) ([`70615ab`](https://github.com/thegeeklab/git-sv/commit/70615ab)) ### [`v1.0.14`](https://github.com/thegeeklab/git-sv/releases/tag/v1.0.14) [Compare Source](https://github.com/thegeeklab/git-sv/compare/v1.0.13...v1.0.14) #### v1.0.14 (2025-04-21) ##### Bug Fixes - **deps:** update module github.com/urfave/cli/v3 to v3.2.0 ([#​186](https://github.com/thegeeklab/git-sv/issues/186)) ([`e96b83e`](https://github.com/thegeeklab/git-sv/commit/e96b83e)) - **deps:** update module github.com/urfave/cli/v2 to v3 ([#​177](https://github.com/thegeeklab/git-sv/issues/177)) ([`0f9464c`](https://github.com/thegeeklab/git-sv/commit/0f9464c)) ##### Others - **deps:** update dependency golangci/golangci-lint to v2.1.2 ([#​185](https://github.com/thegeeklab/git-sv/issues/185)) ([`8acf627`](https://github.com/thegeeklab/git-sv/commit/8acf627)) - **docker:** update docker.io/library/golang:1.24.2 docker digest to [`d9db321`](https://github.com/thegeeklab/git-sv/commit/d9db321) ([#​184](https://github.com/thegeeklab/git-sv/issues/184)) ([`e30469e`](https://github.com/thegeeklab/git-sv/commit/e30469e)) - **deps:** bump golang.org/x/crypto from 0.31.0 to 0.35.0 ([#​183](https://github.com/thegeeklab/git-sv/issues/183)) ([`c304dc0`](https://github.com/thegeeklab/git-sv/commit/c304dc0)) - **deps:** update golang devdeps non-major ([#​182](https://github.com/thegeeklab/git-sv/issues/182)) ([`da0aa20`](https://github.com/thegeeklab/git-sv/commit/da0aa20)) - **docker:** update docker.io/library/golang:1.24.2 docker digest to [`1ecc479`](https://github.com/thegeeklab/git-sv/commit/1ecc479) ([#​181](https://github.com/thegeeklab/git-sv/issues/181)) ([`bc88a65`](https://github.com/thegeeklab/git-sv/commit/bc88a65)) - **docker:** update docker.io/library/golang:1.24.2 docker digest to [`18a1f2d`](https://github.com/thegeeklab/git-sv/commit/18a1f2d) ([#​180](https://github.com/thegeeklab/git-sv/issues/180)) ([`9ca57c6`](https://github.com/thegeeklab/git-sv/commit/9ca57c6)) - **docker:** update docker.io/library/golang:1.24.2 docker digest to [`c0b66cf`](https://github.com/thegeeklab/git-sv/commit/c0b66cf) ([#​179](https://github.com/thegeeklab/git-sv/issues/179)) ([`dacf1ac`](https://github.com/thegeeklab/git-sv/commit/dacf1ac)) - **deps:** update golang patch version ([#​178](https://github.com/thegeeklab/git-sv/issues/178)) ([`443b154`](https://github.com/thegeeklab/git-sv/commit/443b154)) - **deps:** update dependency golangci/golangci-lint to v2.0.2 ([#​176](https://github.com/thegeeklab/git-sv/issues/176)) ([`0c97970`](https://github.com/thegeeklab/git-sv/commit/0c97970)) - **deps:** update dependency golangci/golangci-lint to v2 ([#​175](https://github.com/thegeeklab/git-sv/issues/175)) ([`6cd87f6`](https://github.com/thegeeklab/git-sv/commit/6cd87f6)) - **deps:** update dependency golangci/golangci-lint to v1.64.8 ([#​174](https://github.com/thegeeklab/git-sv/issues/174)) ([`35c7fa0`](https://github.com/thegeeklab/git-sv/commit/35c7fa0)) ### [`v1.0.13`](https://github.com/thegeeklab/git-sv/releases/tag/v1.0.13) [Compare Source](https://github.com/thegeeklab/git-sv/compare/v1.0.12...v1.0.13) #### v1.0.13 (2025-03-22) ##### Bug Fixes - **deps:** update module github.com/rs/zerolog to v1.34.0 ([#​173](https://github.com/thegeeklab/git-sv/issues/173)) ([`9726db3`](https://github.com/thegeeklab/git-sv/commit/9726db3)) - **deps:** update module github.com/urfave/cli/v2 to v2.27.6 ([#​167](https://github.com/thegeeklab/git-sv/issues/167)) ([`a355fd3`](https://github.com/thegeeklab/git-sv/commit/a355fd3)) ##### Others - **docker:** update docker.io/library/golang:1.24.1 docker digest to [`52ff1b3`](https://github.com/thegeeklab/git-sv/commit/52ff1b3) ([#​172](https://github.com/thegeeklab/git-sv/issues/172)) ([`7c36d53`](https://github.com/thegeeklab/git-sv/commit/7c36d53)) - **docker:** update docker.io/library/golang:1.24.1 docker digest to [`af0bb30`](https://github.com/thegeeklab/git-sv/commit/af0bb30) ([#​171](https://github.com/thegeeklab/git-sv/issues/171)) ([`d9472e3`](https://github.com/thegeeklab/git-sv/commit/d9472e3)) - **deps:** update dependency golangci/golangci-lint to v1.64.7 ([#​170](https://github.com/thegeeklab/git-sv/issues/170)) ([`792c840`](https://github.com/thegeeklab/git-sv/commit/792c840)) - **docker:** update docker.io/library/golang:1.24.1 docker digest to [`fa145a3`](https://github.com/thegeeklab/git-sv/commit/fa145a3) ([#​169](https://github.com/thegeeklab/git-sv/issues/169)) ([`635116f`](https://github.com/thegeeklab/git-sv/commit/635116f)) - **docker:** update docker.io/library/golang:1.24.1 docker digest to [`8678013`](https://github.com/thegeeklab/git-sv/commit/8678013) ([#​168](https://github.com/thegeeklab/git-sv/issues/168)) ([`38f4d05`](https://github.com/thegeeklab/git-sv/commit/38f4d05)) - **deps:** update golang patch version ([#​166](https://github.com/thegeeklab/git-sv/issues/166)) ([`50c0587`](https://github.com/thegeeklab/git-sv/commit/50c0587)) - **deps:** update dependency golangci/golangci-lint to v1.64.6 ([#​165](https://github.com/thegeeklab/git-sv/issues/165)) ([`b103fff`](https://github.com/thegeeklab/git-sv/commit/b103fff)) - **docker:** update docker.io/library/golang:1.24.0 docker digest to [`3f74443`](https://github.com/thegeeklab/git-sv/commit/3f74443) ([#​164](https://github.com/thegeeklab/git-sv/issues/164)) ([`4e71183`](https://github.com/thegeeklab/git-sv/commit/4e71183)) - **docker:** update docker.io/library/golang:1.24.0 docker digest to [`cd0c949`](https://github.com/thegeeklab/git-sv/commit/cd0c949) ([#​163](https://github.com/thegeeklab/git-sv/issues/163)) ([`5bed58b`](https://github.com/thegeeklab/git-sv/commit/5bed58b))
--- ### Configuration 📅 **Schedule**: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Co-authored-by: Lunny Xiao Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/55 Reviewed-by: techknowlogick Reviewed-by: DaanSelen Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- .gitea/workflows/changelog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/changelog.yml b/.gitea/workflows/changelog.yml index 3b558c3..f53ee3b 100644 --- a/.gitea/workflows/changelog.yml +++ b/.gitea/workflows/changelog.yml @@ -8,7 +8,7 @@ on: jobs: changelog: runs-on: ubuntu-latest - container: docker.io/thegeeklab/git-sv:1.0.12 + container: docker.io/thegeeklab/git-sv:2.0.5 steps: - name: install tools run: |