Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
image: "ghcr.io/helmfile/helmfile:v1.1.9@sha256:0bae88dc10b2c21794b6a07d0b47de9e93f75425ffbe27f22d5b65a15eb9b781"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Build manifests"
run: >
helmfile template -f ./chart/helmfile.yaml
Expand All @@ -29,7 +29,7 @@ jobs:
image: "tmknom/prettier:3.6.2"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Run Prettier"
run: "prettier --check ."

Expand All @@ -39,7 +39,7 @@ jobs:
image: "ghcr.io/igorshubovych/markdownlint-cli:v0.45.0"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Lint Markdown files"
run: "markdownlint '**/*.md'"

Expand All @@ -51,7 +51,7 @@ jobs:
- "build-manifests-job"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Download manifests"
uses: "actions/download-artifact@v6.0.0"
with:
Expand All @@ -66,7 +66,7 @@ jobs:
image: "trufflesecurity/trufflehog:3.90.13"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Run TruffleHog scan"
run: "trufflehog git file://."

Expand All @@ -78,7 +78,7 @@ jobs:
- "build-manifests-job"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Download manifests"
uses: "actions/download-artifact@v6.0.0"
with:
Expand All @@ -95,7 +95,7 @@ jobs:
- "build-manifests-job"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Download manifests"
uses: "actions/download-artifact@v6.0.0"
with:
Expand All @@ -110,7 +110,7 @@ jobs:
- "build-manifests-job"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Download manifests"
uses: "actions/download-artifact@v6.0.0"
with:
Expand All @@ -127,7 +127,7 @@ jobs:
image: "alpine/helm:3.19.0@sha256:aef9b56f64e866207d9591d0abd8f6d767b36aadd12edf68f8a719716d9d29c9"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Install helm-unittest"
run: "helm plugin install https://github.com/helm-unittest/helm-unittest.git"
- name: "Run helm unittest"
Expand All @@ -139,7 +139,7 @@ jobs:
version: "${{ steps.get_version.outputs.version }}"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
with:
fetch-depth: 0
- name: "Setup verscout"
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
- "determine-version-job"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Copy README.md to chart directory"
run: "cp ./README.md ./chart/README.md"
- name: "Package Helm chart"
Expand All @@ -193,7 +193,7 @@ jobs:
if: "needs.determine-version-job.outputs.VERSION != ''"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Download packaged chart"
uses: "actions/download-artifact@v6.0.0"
with:
Expand All @@ -214,7 +214,7 @@ jobs:
contents: "write"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
with:
fetch-depth: 0
- name: "Download packaged chart"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: "ubuntu-24.04"
steps:
- name: "Check out repository"
uses: "actions/checkout@v5.0.0"
uses: "actions/checkout@v6.0.2"
- name: "Run Renovate"
uses: "renovatebot/github-action@v44.0.1"
with:
Expand Down
Loading