mirror of
https://gitea.com/gitea/helm-actions.git
synced 2026-09-17 23:35:53 +00:00
This PR contains the following updates: | Package | Type | Update | Change | Pending | |---|---|---|---|---| | [alpine/helm](https://github.com/alpine-docker/helm) ([changelog](https://github.com/helm/helm)) | | patch | `4.2.3` → `4.2.4` | | | [alpine/helm](https://github.com/alpine-docker/helm) ([changelog](https://github.com/helm/helm)) | container | patch | `4.2.3` → `4.2.4` | | | [commitlint/commitlint](https://github.com/conventional-changelog/commitlint) | container | patch | `21.2.1` → `21.2.2` | | | [docker.io/thegeeklab/git-sv](https://github.com/thegeeklab/git-sv) | container | patch | `3.0.0` → `3.0.1` | | | [https://github.com/docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) ([changelog](bb05f3f551..37fe631027)) | action | digest | `bb05f3f` → `37fe631` | | | [volker-raschek/ah-annotations](https://github.com/volker-raschek/ah-annotations) | action | patch | `v0.2.0` → `v0.2.1` | `v0.2.2` | --- ### Release Notes <details> <summary>conventional-changelog/commitlint (commitlint/commitlint)</summary> ### [`v21.2.2`](https://github.com/conventional-changelog/commitlint/blob/HEAD/CHANGELOG.md#2122-2026-08-13) [Compare Source](https://github.com/conventional-changelog/commitlint/compare/v21.2.1...v21.2.2) ##### Bug Fixes - **container:** resolve packages from TypeScript configs ([#​4914](https://github.com/conventional-changelog/commitlint/issues/4914)) ([f5712a9](f5712a9d21)) - **parse:** require colon after note keywords (conventional-commits-parser 7.1.2) ([#​4927](https://github.com/conventional-changelog/commitlint/issues/4927)) ([b83c515](b83c51569d)), closes [conventional-changelog/conventional-changelog#1517](https://github.com/conventional-changelog/conventional-changelog/issues/1517) - **resolve-extends:** support Yarn Plug'n'Play ([#​4933](https://github.com/conventional-changelog/commitlint/issues/4933)) ([67ee127](67ee1271ea)) </details> <details> <summary>thegeeklab/git-sv (docker.io/thegeeklab/git-sv)</summary> ### [`v3.0.1`](https://github.com/thegeeklab/git-sv/releases/tag/v3.0.1) [Compare Source](https://github.com/thegeeklab/git-sv/compare/v3.0.0...v3.0.1) #### v3.0.1 (2026-08-06) ##### Bug Fixes - **deps:** update module github.com/go-git/go-git/v6 to v6.0.0-alpha.5 ([#​341](https://github.com/thegeeklab/git-sv/issues/341)) ([`e5767ff`](https://github.com/thegeeklab/git-sv/commit/e5767ff)) ##### Others - **docker:** update docker.io/library/golang:1.26.5 docker digest to [`2005724`](https://github.com/thegeeklab/git-sv/commit/2005724) ([#​343](https://github.com/thegeeklab/git-sv/issues/343)) ([`da8319e`](https://github.com/thegeeklab/git-sv/commit/da8319e)) - **deps:** update dependency mvdan/gofumpt to v0.11.0 ([#​342](https://github.com/thegeeklab/git-sv/issues/342)) ([`61a7494`](https://github.com/thegeeklab/git-sv/commit/61a7494)) </details> <details> <summary>volker-raschek/ah-annotations (volker-raschek/ah-annotations)</summary> ### [`v0.2.1`](https://github.com/volker-raschek/ah-annotations/compare/v0.2.0...v0.2.1) [Compare Source](https://github.com/volker-raschek/ah-annotations/compare/v0.2.0...v0.2.1) </details> --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xOTEuMiIsInVwZGF0ZWRJblZlciI6IjQzLjE5MS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJraW5kL2RlcGVuZGVuY3kiXX0=--> Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/182 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Renovate Bot <renovate-bot@gitea.com>
53 lines
1.6 KiB
YAML
53 lines
1.6 KiB
YAML
name: check-and-test
|
|
|
|
"on":
|
|
"workflow_dispatch":
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
# renovate: datasource=github-releases depName=helm-unittest/helm-unittest
|
|
HELM_UNITTEST_VERSION: "v1.1.2"
|
|
|
|
jobs:
|
|
check-and-test:
|
|
runs-on: ubuntu-latest
|
|
container: alpine/helm:4.2.4
|
|
steps:
|
|
- name: install tools
|
|
run: |
|
|
apk update
|
|
apk add --update bash make nodejs npm yamllint ncurses
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6
|
|
with:
|
|
version: 11
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
|
|
- name: install chart dependencies
|
|
run: helm dependency build
|
|
- name: lint
|
|
run: helm lint .
|
|
- name: template
|
|
run: helm template --debug gitea-actions .
|
|
- name: prepare unit test environment
|
|
run: |
|
|
helm plugin install --version ${{ env.HELM_UNITTEST_VERSION }} --verify=false \
|
|
https://github.com/helm-unittest/helm-unittest.git # https://github.com/helm-unittest/helm-unittest?tab=readme-ov-file#install
|
|
git submodule update --init --recursive
|
|
- name: unit tests
|
|
env:
|
|
TERM: xterm
|
|
run: |
|
|
make unittests-helm
|
|
- name: verify readme
|
|
run: |
|
|
make readme
|
|
git diff --exit-code --name-only README.md
|
|
- name: yaml lint
|
|
# uses: ibiqlik/action-yamllint@v3 # Github / Act
|
|
uses: https://github.com/ibiqlik/action-yamllint@2576378a8e339169678f9939646ee3ee325e845c # v3 # Gitea
|