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
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
matrix: ${{ steps.charts.outputs.matrix }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
fetch-tags: true
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
chart: ${{ fromJson(needs.check.outputs.matrix) }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0

Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
echo "version=$(yq eval '.version' "./${INPUT_CHART_DIR}/${INPUT_CHART}/Chart.yaml")" >> "${GITHUB_OUTPUT}"

- name: Get changelog entry
uses: mindsers/changelog-reader-action@32aa5b4c155d76c94e4ec883a223c947b2f02656 # v2.2.3
uses: mindsers/changelog-reader-action@1faaf50aa09d5793d9a100819973df801febfb31 # v2.4.0
id: changelog_reader
if: inputs.release_notes
with:
Expand Down Expand Up @@ -334,15 +334,15 @@ jobs:

- name: Login to OCI registry
if: inputs.publish_oci
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
with:
registry: ${{ inputs.oci_registry }}
username: ${{ inputs.oci_username }}
password: ${{ secrets.oci_password || github.token }}

- name: Install Crane
if: inputs.publish_oci
uses: imjasonh/setup-crane@6da1ae018866400525525ce74ff892880c099987 # v0.5
uses: imjasonh/setup-crane@59c71e96a00b28651f10369ba3359a6d730740a0 # v0.6

- name: Install ORAS
if: inputs.publish_oci
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:

- name: Install Cosign
if: inputs.publish_oci
uses: sigstore/cosign-installer@cad07c2e89fa2edd6e2d7bab4c1aa38e53f76003 # v4.1.1
uses: sigstore/cosign-installer@6f9f17788090df1f26f669e9d70d6ae9567deba6 # v4.1.2

- name: Publish chart to OCI repository
id: publish_oci
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
matrix: ${{ steps.changes.outputs.matrix }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0

Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
chart: ${{ fromJson(needs.check.outputs.matrix) }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0

Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:

- name: Cache Kubeconform schemas
id: kubeconform_cache
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
if: inputs.kubeconform
with:
key: kubeconform
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@

## [UNRELEASED]

### Changed

- Update _actions/checkout_ from `6.0.2` to `6.0.3`. ([#136](https://github.com/action-stars/helm-workflows/pull/136)) _@dependabot_
- Update _mindsers/changelog-reader-action_ from `2.2.3` to `2.4.0`. ([#136](https://github.com/action-stars/helm-workflows/pull/136)) _@dependabot_
- Update _docker/login-action_ from `4.0.0` to `4.2.0`. ([#136](https://github.com/action-stars/helm-workflows/pull/136)) _@dependabot_
- Update _imjasonh/setup-crane_ from `0.5` to `0.6`. ([#136](https://github.com/action-stars/helm-workflows/pull/136)) _@dependabot_
- Update _sigstore/cosign-installer_ from `4.1.1` to `4.1.2`. ([#136](https://github.com/action-stars/helm-workflows/pull/136)) _@dependabot_
- Update _actions/cache_ from `5.0.4` to `5.0.5`. ([#136](https://github.com/action-stars/helm-workflows/pull/136)) _@dependabot_

## [v0.12.0] - 2026-04-01

### Changed
Expand Down
Loading