Skip to content

Commit 79ef29d

Browse files
authored
Merge pull request #9 from cobbler/feature/update-cobbler-web-1-0-0
Cobbler-Web: Update to v1.0.0
2 parents 04b9348 + 575a349 commit 79ef29d

4 files changed

Lines changed: 38 additions & 14 deletions

File tree

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
groups:
8+
dependabot:
9+
applies-to: version-updates
10+
patterns:
11+
- "github/codeql-action/*"
12+
commit-message:
13+
prefix: "build"
14+
prefix-development: "chore"
15+
include: "scope"

.github/workflows/lint-test.yml

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@v6
10+
# https://github.com/actions/checkout
11+
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
1112
with:
1213
fetch-depth: 0
1314
# This prepares directory where github/codeql-action/upload-sarif@v1 looks up report files by default.
@@ -16,7 +17,8 @@ jobs:
1617
run: mkdir -p ../results
1718

1819
- name: Scan yaml files with kube-linter
19-
uses: stackrox/kube-linter-action@v1.0.7
20+
# https://github.com/stackrox/kube-linter-action
21+
uses: stackrox/kube-linter-action@87802a2f4e01abebb3ee3c67a3002fea71f6eae5 # v1.0.7
2022
id: kube-linter-action-scan
2123
with:
2224
# Adjust this directory to the location where your kubernetes resources and helm charts are located.
@@ -28,7 +30,8 @@ jobs:
2830
continue-on-error: true
2931

3032
- name: Upload SARIF report files to GitHub
31-
uses: github/codeql-action/upload-sarif@v4
33+
# https://github.com/github/codeql-action
34+
uses: github/codeql-action/upload-sarif@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # v4
3235

3336
# Ensure the workflow eventually fails if files did not pass kube-linter checks.
3437
- name: Verify kube-linter-action succeeded
@@ -40,23 +43,27 @@ jobs:
4043
runs-on: ubuntu-latest
4144
steps:
4245
- name: Checkout
43-
uses: actions/checkout@v6
46+
# https://github.com/actions/checkout
47+
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
4448
with:
4549
fetch-depth: 0
4650

4751
- name: Set up Helm
48-
uses: azure/setup-helm@v4.3.1
52+
# https://github.com/azure/setup-helm
53+
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1
4954
with:
5055
version: v3.17.0
5156

52-
- uses: actions/setup-python@v6.2.0
57+
- name: Set up Python
58+
# https://github.com/actions/setup-python
59+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
5360
with:
5461
python-version: "3.x"
5562
check-latest: true
5663

57-
# https://github.com/helm/chart-testing-action
5864
- name: Set up chart-testing
59-
uses: helm/chart-testing-action@v2.8.0
65+
# https://github.com/helm/chart-testing-action
66+
uses: helm/chart-testing-action@6ec842c01de15ebb84c8627d2744a0c2f2755c9f # v2.8.0
6067

6168
- name: Run chart-testing (list-changed)
6269
id: list-changed
@@ -72,7 +79,8 @@ jobs:
7279

7380
- name: Create kind cluster
7481
if: steps.list-changed.outputs.changed == 'true'
75-
uses: helm/kind-action@v1.12.0
82+
# https://github.com/helm/kind-action
83+
uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0
7684

7785
- name: Run chart-testing (install)
7886
if: steps.list-changed.outputs.changed == 'true'

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v6
15+
# https://github.com/actions/checkout
16+
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6
1617
with:
1718
fetch-depth: 0
1819

@@ -21,8 +22,8 @@ jobs:
2122
git config user.name "$GITHUB_ACTOR"
2223
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
2324
24-
# https://github.com/helm/chart-releaser-action
2525
- name: Run chart-releaser
26-
uses: helm/chart-releaser-action@v1.7.0
26+
# https://github.com/helm/chart-releaser-action
27+
uses: helm/chart-releaser-action@cae68fefc6b5f367a0275617c9f83181ba54714f # v1.7.0
2728
env:
2829
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

charts/cobbler-web/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: cobbler-web
33
description: A Helm Chart to host the Cobbler Web UI.
44
type: application
5-
version: 0.1.3
6-
appVersion: "v0.0.1-rc5"
5+
version: 0.2.0
6+
appVersion: "v1.0.0"
77
icon: https://avatars.githubusercontent.com/u/1179083?s=200&v=4
88
maintainers:
99
- name: SchoolGuy

0 commit comments

Comments
 (0)