Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
dorkamotorka authored Nov 13, 2023
2 parents a1a99bb + 99286b4 commit acff0eb
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 33 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
python-version: 3.7

- name: Set up chart-testing
uses: helm/chart-testing-action@v2.4.0
uses: helm/chart-testing-action@v2.6.1

- name: Run chart-testing (list-changed --target-branch main)
id: list-changed
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# GPG_PASSPHRASE: "${{ secrets.GPG_PASSPHRASE}}"

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.5.0
uses: helm/chart-releaser-action@v1.6.0
with:
config: "./.github/configs/cr.yaml"
env:
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/gruntwork-io/pre-commit
rev: v0.1.22
rev: v0.1.23
hooks:
- id: helmlint
- repo: https://github.com/norwoodj/helm-docs
rev: v1.11.0
rev: v1.11.3
hooks:
- id: helm-docs
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 35.110.1
rev: 37.52.0
hooks:
- id: renovate-config-validator
4 changes: 2 additions & 2 deletions charts/uptime-kuma/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "1.23.2"
appVersion: "1.23.3"
deprecated: false
description: A self-hosted Monitoring tool like "Uptime-Robot".
home: https://github.com/dirsigler/uptime-kuma-helm
Expand All @@ -11,4 +11,4 @@ name: uptime-kuma
sources:
- https://github.com/louislam/uptime-kuma
type: application
version: 2.14.3
version: 2.15.1
6 changes: 3 additions & 3 deletions charts/uptime-kuma/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# uptime-kuma

![Version: 2.14.2](https://img.shields.io/badge/Version-2.14.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.23.2](https://img.shields.io/badge/AppVersion-1.23.2-informational?style=flat-square)
![Version: 2.15.0](https://img.shields.io/badge/Version-2.15.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.23.3](https://img.shields.io/badge/AppVersion-1.23.3-informational?style=flat-square)

A self-hosted Monitoring tool like "Uptime-Robot".

Expand Down Expand Up @@ -28,7 +28,7 @@ A self-hosted Monitoring tool like "Uptime-Robot".
| fullnameOverride | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"louislam/uptime-kuma"` | |
| image.tag | string | `"1.23.2-debian"` | |
| image.tag | string | `"1.23.3-debian"` | |
| imagePullSecrets | list | `[]` | |
| ingress.annotations."nginx.ingress.kubernetes.io/proxy-read-timeout" | string | `"3600"` | |
| ingress.annotations."nginx.ingress.kubernetes.io/proxy-send-timeout" | string | `"3600"` | |
Expand Down Expand Up @@ -80,4 +80,4 @@ A self-hosted Monitoring tool like "Uptime-Robot".
| volume.size | string | `"4Gi"` | |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.2](https://github.com/norwoodj/helm-docs/releases/v1.11.2)
Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3)
2 changes: 1 addition & 1 deletion charts/uptime-kuma/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ image:
repository: louislam/uptime-kuma
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "1.23.2-debian"
tag: "1.23.3-debian"

imagePullSecrets: []
nameOverride: ""
Expand Down
30 changes: 8 additions & 22 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,18 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":disableDependencyDashboard",
":enablePreCommit"
],
"extends": ["config:base", ":disableDependencyDashboard", ":enablePreCommit"],
"timezone": "Europe/Berlin",
"schedule": [
"at any time"
],
"schedule": ["at any time"],
"assignees": ["dirsigler"],
"reviewers": ["dirsigler"],
"enabledManagers": [
"helmv3",
"helm-values",
"github-actions"
],
"enabledManagers": ["helmv3", "pre-commit", "helm-values", "github-actions"],
"pre-commit": {
"enabled": true
},
"packageRules": [
{
"matchManagers": [
"helmv3",
"helm-values",
"github-actions"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"matchManagers": ["pre-commit", "helmv3", "github-actions"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "all",
"automerge": false
}
Expand Down

0 comments on commit acff0eb

Please sign in to comment.