Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/actions/setup-local-k8s/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Setup local-k8s
description: Checkout, install Python, and install the local-k8s CLI (from zepben/ci-utils) with its tools on PATH.
description: Install Python and the local-k8s CLI (from zepben/ci-utils) with its tools on PATH.

inputs:
ci_utils_ref:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/helm-charts-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ jobs:
matrix:
chart: ${{ fromJson(needs.list-changed.outputs.charts) }}
steps:
- name: Checkout
uses: actions/checkout@v7

- name: Setup local-k8s
uses: zepben/.github/.github/actions/setup-local-k8s@main
with:
Expand All @@ -92,6 +95,9 @@ jobs:
matrix:
chart: ${{ fromJson(needs.list-changed.outputs.charts) }}
steps:
- name: Checkout
uses: actions/checkout@v7

- name: Setup local-k8s
uses: zepben/.github/.github/actions/setup-local-k8s@main
with:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/helm-charts-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
outputs:
charts: ${{ steps.detect.outputs.charts }}
steps:
- name: Checkout
uses: actions/checkout@v7
with:
fetch-depth: 0

- name: Setup local-k8s
# Relative ./.github/actions resolves to the *caller* workspace (e.g. deployments),
# not this reusable-workflow repo so must use an absolute org/repo@ref.
Expand Down Expand Up @@ -53,7 +58,7 @@ jobs:
matrix:
chart: ${{ fromJson(needs.list-changed.outputs.charts) }}
env:
GITHUB_TOKEN: ${secret.CI_GITHUB_TOKEN}
GITHUB_TOKEN: ${secrets.CI_GITHUB_TOKEN}
steps:
- uses: actions/checkout@v7
with:
Expand Down