Skip to content

Commit

Permalink
Bump github/super-linter from 5 to 6 (#264)
Browse files Browse the repository at this point in the history
* Bump github/super-linter from 5 to 6

Bumps [github/super-linter](https://github.com/github/super-linter) from 5 to 6.
- [Release notes](https://github.com/github/super-linter/releases)
- [Changelog](https://github.com/github/super-linter/blob/main/CHANGELOG.md)
- [Commits](github/super-linter@v5...v6)

---
updated-dependencies:
- dependency-name: github/super-linter
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* add namespace to ci secrets

Signed-off-by: André Bauer <andre.bauer@staffbase.com>

* upadte chart version

Signed-off-by: André Bauer <andre.bauer@staffbase.com>

* add permissions

Signed-off-by: André Bauer <andre.bauer@staffbase.com>

* add top level permissions

Signed-off-by: André Bauer <andre.bauer@staffbase.com>

* add linbreak

Signed-off-by: André Bauer <andre.bauer@staffbase.com>

* fix pvc

Signed-off-by: André Bauer <andre.bauer@staffbase.com>

* remove blankline

Signed-off-by: André Bauer <andre.bauer@staffbase.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: André Bauer <andre.bauer@staffbase.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: André Bauer <andre.bauer@staffbase.com>
  • Loading branch information
dependabot[bot] and monotek authored Apr 26, 2024
1 parent 0877f7d commit 015e34d
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 8 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
name: ci

permissions: read-all

on:
pull_request:
branches:
- main

env:
helm-version: "v3.12.1"
kubeconform-version: "v0.6.3"
helm-version: "v3.14.4"
kubeconform-version: "v0.6.4"

jobs:
super-linter:
Expand All @@ -19,7 +21,7 @@ jobs:
fetch-depth: 0

- name: Lint Code Base
uses: github/super-linter/slim@v5
uses: github/super-linter/slim@v6
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -128,4 +130,4 @@ jobs:
run: kubectl create --namespace zammad --filename zammad/ci/full-objects.yaml

- name: Run chart-testing (install)
run: ct install --config .github/ct.yaml --helm-extra-args '--timeout 900s'
run: ct install --config .github/ct.yaml --helm-extra-args '--timeout 900s'
8 changes: 7 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
name: Release Charts

permissions: read-all

on:
push:
branches:
- main

env:
helm-version: "v3.10.1"
helm-version: "v3.14.4"

jobs:
release:
permissions:
contents: write # to push chart release and create a release (helm/chart-releaser-action)
packages: write # needed for ghcr access
id-token: write # needed for keyless signing
runs-on: ubuntu-22.04
steps:
- name: Checkout
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/sync-readme.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: sync-readme

permissions: read-all

on:
push:
branches:
Expand All @@ -9,6 +11,8 @@ on:

jobs:
build:
permissions:
contents: write # for git push
runs-on: ubuntu-22.04
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions zammad/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: zammad
version: 12.0.0
appVersion: 6.3.0
version: 12.0.1
appVersion: 6.3.0-15
description: Zammad is a web based open source helpdesk/customer support system with many features to manage customer communication via several channels like telephone, facebook, twitter, chat and e-mails.
home: https://zammad.org
icon: https://raw.githubusercontent.com/zammad/zammad-documentation/main/images/zammad_logo_600x520.png
Expand Down
8 changes: 7 additions & 1 deletion zammad/ci/full-objects.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ data:
kind: Secret
metadata:
name: minio-existing-secret
namespace: zammad
type: Opaque
---
apiVersion: v1
Expand All @@ -13,6 +14,7 @@ data:
kind: Secret
metadata:
name: redis-existing-secret
namespace: zammad
type: Opaque
---
apiVersion: v1
Expand All @@ -21,6 +23,7 @@ data:
kind: Secret
metadata:
name: postgresql-existing-secret
namespace: zammad
type: Opaque
---
apiVersion: v1
Expand All @@ -29,6 +32,7 @@ data:
kind: Secret
metadata:
name: elasticsearch-existing-secret
namespace: zammad
type: Opaque
---
apiVersion: v1
Expand All @@ -37,15 +41,17 @@ data:
kind: Secret
metadata:
name: autowizard
namespace: zammad
type: Opaque
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: storage-volume-claim
namespace: zammad
spec:
accessModes:
- ReadWriteOnce # Testing env does not provide ReadWrite Many, but for CI this is enough.
resources:
requests:
storage: 32Mi
storage: 32Mi

0 comments on commit 015e34d

Please sign in to comment.