This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [https://gitea.t000-n.de/t.behrendt/k_deploy_workflows](https://gitea.t000-n.de/t.behrendt/k_deploy_workflows) | action | patch | `0.0.6` → `0.0.10` | | [https://gitea.t000-n.de/t.behrendt/k_deploy_workflows](https://gitea.t000-n.de/t.behrendt/k_deploy_workflows) | action | patch | `0.0.7` → `0.0.10` | --- ### Release Notes <details> <summary>t.behrendt/k_deploy_workflows (https://gitea.t000-n.de/t.behrendt/k_deploy_workflows)</summary> ### [`v0.0.10`](https://gitea.t000-n.de/t.behrendt/k_deploy_workflows/compare/0.0.9...0.0.10) [Compare Source](https://gitea.t000-n.de/t.behrendt/k_deploy_workflows/compare/0.0.9...0.0.10) ### [`v0.0.9`](https://gitea.t000-n.de/t.behrendt/k_deploy_workflows/compare/0.0.8...0.0.9) [Compare Source](https://gitea.t000-n.de/t.behrendt/k_deploy_workflows/compare/0.0.8...0.0.9) ### [`v0.0.8`](https://gitea.t000-n.de/t.behrendt/k_deploy_workflows/compare/0.0.7...0.0.8) [Compare Source](https://gitea.t000-n.de/t.behrendt/k_deploy_workflows/compare/0.0.7...0.0.8) ### [`v0.0.7`](https://gitea.t000-n.de/t.behrendt/k_deploy_workflows/compare/0.0.6...0.0.7) [Compare Source](https://gitea.t000-n.de/t.behrendt/k_deploy_workflows/compare/0.0.6...0.0.7) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41LjQiLCJ1cGRhdGVkSW5WZXIiOiI0My41LjQiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImFjdGlvbiIsImRlcHMiXX0=--> Reviewed-on: #4 Reviewed-by: t.behrendt <t.behrendt@noreply.localhost> Co-authored-by: Renovate Bot <renovate@t00n.de> Co-committed-by: Renovate Bot <renovate@t00n.de>
31 lines
1.0 KiB
YAML
31 lines
1.0 KiB
YAML
name: Validate
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: https://gitea.t000-n.de/t.behrendt/k_deploy_workflows/.gitea/actions/extract-namespace-from-repo-name@7993842765aaa808493ab79c5f3c21cf2d30f300 # 0.0.10
|
|
id: namespace
|
|
with:
|
|
repo: ${{ github.repository }}
|
|
- uses: azure/setup-kubectl@15650b3ad78fff148532a140b8a4c821796b2d7b # v5.0.0
|
|
- uses: azure/setup-helm@dda3372f752e03dde6b3237bc9431cdc2f7a02a2 # v5
|
|
with:
|
|
version: "3.15.0"
|
|
- uses: azure/k8s-set-context@ae59a723ba9abe7a9655538854a025448dbab4aa # v4.0.2
|
|
with:
|
|
method: kubeconfig
|
|
kubeconfig: ${{ secrets.KUBECONFIG }}
|
|
- name: Validate
|
|
uses: azure/k8s-lint@6aefe5066f95e73d2b140d8835cc95583b886989 # v3.0.1
|
|
with:
|
|
namespace: ${{ steps.namespace.outputs.namespace }}
|
|
lintType: dryrun
|
|
manifests: "k8s/"
|