Update nextcloud Docker tag to v31 #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pipeline | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
kustomize-build: | |
uses: ./.github/workflows/kustomize-reusable.yaml | |
with: | |
paths: > | |
apps/kind argocd/overlays/kind cert-manager/overlays/kind cloudnative-pg/overlays/kind external-secrets/overlays/kind hetzner-acme/overlays/kind jellyfin/overlays/kind metallb/overlays/kind minio/overlays/kind nextcloud/overlays/kind nginx-ingress/overlays/kind pi-hole/overlays/kind wireguard/overlays/kind | |
kind-deploy: | |
needs: kustomize-build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Chainsaw | |
uses: kyverno/action-install-chainsaw@v0.2.12 | |
- name: Create Kind Cluster | |
uses: helm/kind-action@v1.12.0 | |
with: | |
config: kind-config.yaml | |
- name: Chainsaw test | |
run: chainsaw test | |
env: | |
BITWARDEN_ACCESS_TOKEN: ${{ secrets.BITWARDEN_ACCESS_TOKEN }} | |
TARGET_REVISION: ${{ github.head_ref }} |