Compare commits

...

28 Commits

Author SHA1 Message Date
renovate[bot]
8283b1f395 Update Helm chart common to v4.5.3 2025-08-10 13:04:31 +00:00
f3cc3e190c Merge pull request #65 from nikdoof/renovate/external-minor-dep
Update external minor dep
2025-03-03 09:43:37 +00:00
renovate[bot]
b176c1baa1 Update external minor dep 2025-03-01 01:38:04 +00:00
3c73ffec61 Merge pull request #64 from nikdoof/renovate/external-minor-dep
Update helm/kind-action action to v1.12.0
2025-01-04 10:06:49 +00:00
renovate[bot]
854de227c6 Update helm/kind-action action to v1.12.0 2025-01-01 01:16:59 +00:00
9e7e126e3b Merge pull request #63 from nikdoof/renovate/external-minor-dep
Update helm/kind-action action to v1.10.0
2024-05-02 15:49:12 +01:00
renovate[bot]
3477414580 Update helm/kind-action action to v1.10.0 2024-05-01 00:28:16 +00:00
7c9da31698 Merge pull request #62 from nikdoof/renovate/workflows-azure-setup-helm-4.x
[workflows] Update azure/setup-helm action to v4
2024-04-01 09:22:16 +01:00
renovate[bot]
68bac6536f [workflows] Update azure/setup-helm action to v4 2024-04-01 01:29:53 +00:00
7c8fec46d2 Merge pull request #61 from nikdoof/renovate/external-minor-dep
Update helm/kind-action action to v1.9.0
2024-03-03 07:52:22 +00:00
renovate[bot]
057cff3c53 Update helm/kind-action action to v1.9.0 2024-03-01 02:39:13 +00:00
9e381e07bf Merge pull request #60 from nikdoof/renovate/workflows-actions-setup-python-5.x
[workflows] Update actions/setup-python action to v5
2024-01-11 18:21:54 +00:00
28b2e73a1c Merge pull request #59 from nikdoof/renovate/external-minor-dep
Update helm/chart-releaser-action action to v1.6.0
2024-01-11 18:21:45 +00:00
renovate[bot]
49aead8392 [workflows] Update actions/setup-python action to v5 2024-01-01 00:43:52 +00:00
renovate[bot]
5736e631b1 Update helm/chart-releaser-action action to v1.6.0 2024-01-01 00:43:49 +00:00
0cb9253cf2 Merge pull request #58 from nikdoof/renovate/external-patch-dep
Update helm/chart-testing-action action to v2.6.1
2023-12-03 13:19:31 +00:00
renovate[bot]
ae4baa5a8d Update helm/chart-testing-action action to v2.6.1 2023-12-01 02:10:23 +00:00
ad896bfc25 Merge pull request #57 from nikdoof/renovate/external-minor-dep
Update helm/chart-testing-action action to v2.6.0
2023-11-01 10:06:24 +00:00
renovate[bot]
c3f4320bc9 Update helm/chart-testing-action action to v2.6.0 2023-11-01 01:29:18 +00:00
e577d114a0 Merge pull request #56 from nikdoof/renovate/workflows-actions-checkout-4.x
[workflows] Update actions/checkout action to v4
2023-10-03 09:43:47 +01:00
renovate[bot]
ee0dc43acb [workflows] Update actions/checkout action to v4 2023-10-01 01:16:45 +00:00
12d667302d Merge pull request #55 from nikdoof/renovate/external-minor-dep
Update helm/kind-action action to v1.8.0
2023-09-01 13:56:38 +01:00
71a2a2a3fe Don't attempt to install the CRDs if we have no changes 2023-09-01 13:55:53 +01:00
renovate[bot]
a2cfdc0fa5 Update helm/kind-action action to v1.8.0 2023-09-01 00:40:21 +00:00
cc49faf2f2 Merge pull request #54 from nikdoof/renovate/external-minor-dep
Update helm/kind-action action to v1.7.0
2023-07-06 09:59:48 +01:00
renovate[bot]
7d49c188c9 Update helm/kind-action action to v1.7.0 2023-07-01 07:29:50 +00:00
9a201834c3 Merge pull request #53 from nikdoof/renovate/external-minor-dep
Update external minor dep
2023-05-01 07:19:01 +01:00
renovate[bot]
ee8767e7a6 Update external minor dep 2023-05-01 02:27:29 +00:00
3 changed files with 11 additions and 10 deletions

View File

@@ -12,21 +12,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Helm
uses: azure/setup-helm@v3
uses: azure/setup-helm@v4
with:
version: "v${{ env.HELM_VERSION }}"
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ env.PYTHON_VERSION }}"
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.3.1
uses: helm/chart-testing-action@v2.7.0
- name: Run chart-testing (list-changed)
id: list-changed
@@ -40,7 +40,7 @@ jobs:
run: ct lint --config .github/ct.yaml
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.4.0
uses: helm/kind-action@v1.12.0
if: steps.list-changed.outputs.changed == 'true'
- name: Remove node taints
@@ -51,6 +51,7 @@ jobs:
- name: Install CRDs
run: |
cat crds/*.yaml | kubectl apply -f -
if: steps.list-changed.outputs.changed == 'true'
- name: Run chart-testing (install)
run: ct install --config .github/ct.yaml

View File

@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
@@ -20,12 +20,12 @@ jobs:
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3
uses: azure/setup-helm@v4
with:
version: v3.4.0
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.4.1
uses: helm/chart-releaser-action@v1.7.0
with:
charts_repo_url: https://nikdoof.github.io/helm-charts
env:

View File

@@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.0.0
description: A prometheus exporter for generic MQTT metrics
name: mqtt-exporter
version: 1.1.2
version: 1.1.3
kubeVersion: ">=1.16.0-0"
keywords:
- mqtt-exporter
@@ -15,4 +15,4 @@ maintainers:
dependencies:
- name: common
repository: https://nikdoof.github.io/helm-charts/
version: 4.5.2
version: 4.5.3