Skip to content

Commit d0411b6

Browse files
deps: Bump the github-actions group across 1 directory with 5 updates (#117)
* deps: Bump the github-actions group across 1 directory with 5 updates Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6.0.1` | `6.0.2` | | [docker/login-action](https://github.com/docker/login-action) | `3.6.0` | `3.7.0` | | [imjasonh/setup-crane](https://github.com/imjasonh/setup-crane) | `0.4` | `0.5` | | [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `3.1.0` | `3.2.0` | | [actions/setup-python](https://github.com/actions/setup-python) | `6.1.0` | `6.2.0` | Updates `actions/checkout` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@8e8c483...de0fac2) Updates `docker/login-action` from 3.6.0 to 3.7.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@5e57cd1...c94ce9f) Updates `imjasonh/setup-crane` from 0.4 to 0.5 - [Release notes](https://github.com/imjasonh/setup-crane/releases) - [Commits](imjasonh/setup-crane@31b88ef...6da1ae0) Updates `actions/attest-build-provenance` from 3.1.0 to 3.2.0 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](actions/attest-build-provenance@00014ed...96278af) Updates `actions/setup-python` from 6.1.0 to 6.2.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@83679a8...a309ff8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: docker/login-action dependency-version: 3.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: imjasonh/setup-crane dependency-version: '0.5' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/attest-build-provenance dependency-version: 3.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> * chore: Update changelog for Dependabot --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: octo-sts[bot] <157150467+octo-sts[bot]@users.noreply.github.com>
1 parent 36888a1 commit d0411b6

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
matrix: ${{ steps.charts.outputs.matrix }}
8181
steps:
8282
- name: Checkout
83-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
83+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8484
with:
8585
fetch-depth: 0
8686
fetch-tags: true
@@ -149,7 +149,7 @@ jobs:
149149
chart: ${{ fromJson(needs.check.outputs.matrix) }}
150150
steps:
151151
- name: Checkout
152-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
152+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
153153
with:
154154
fetch-depth: 0
155155

@@ -310,15 +310,15 @@ jobs:
310310
311311
- name: Login to OCI registry
312312
if: inputs.publish_oci
313-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
313+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
314314
with:
315315
registry: ${{ inputs.oci_registry }}
316316
username: ${{ inputs.oci_username }}
317317
password: ${{ secrets.oci_password || github.token }}
318318

319319
- name: Install Crane
320320
if: inputs.publish_oci
321-
uses: imjasonh/setup-crane@31b88efe9de28ae0ffa220711af4b60be9435f6e # v0.4
321+
uses: imjasonh/setup-crane@6da1ae018866400525525ce74ff892880c099987 # v0.5
322322

323323
- name: Install ORAS
324324
if: inputs.publish_oci
@@ -383,7 +383,7 @@ jobs:
383383
} >> "${GITHUB_OUTPUT}"
384384
385385
- name: Attest OCI image
386-
uses: actions/attest-build-provenance@00014ed6ed5efc5b1ab7f7f34a39eb55d41aa4f8 # v3.1.0
386+
uses: actions/attest-build-provenance@96278af6caaf10aea03fd8d33a09a777ca52d62f # v3.2.0
387387
with:
388388
subject-name: ${{ steps.oci.outputs.repository }}
389389
subject-digest: ${{ steps.publish_oci.outputs.digest }}

.github/workflows/validate.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ jobs:
7777
shell: bash
7878
steps:
7979
- name: Checkout
80-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
80+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8181
with:
8282
fetch-depth: 0
8383

8484
- name: Install Python
85-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
85+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
8686
with:
8787
token: ${{ github.token }}
8888
python-version: "3.x"

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@
1515

1616
## [UNRELEASED]
1717

18+
### Changed
19+
20+
- Update _actions/checkout_ from `6.0.1` to `6.0.2`. ([#117](https://github.com/action-stars/helm-workflows/pull/117)) _@dependabot_
21+
- Update _docker/login-action_ from `3.6.0` to `3.7.0`. ([#117](https://github.com/action-stars/helm-workflows/pull/117)) _@dependabot_
22+
- Update _imjasonh/setup-crane_ from `0.4` to `0.5`. ([#117](https://github.com/action-stars/helm-workflows/pull/117)) _@dependabot_
23+
- Update _actions/attest-build-provenance_ from `3.1.0` to `3.2.0`. ([#117](https://github.com/action-stars/helm-workflows/pull/117)) _@dependabot_
24+
- Update _actions/setup-python_ from `6.1.0` to `6.2.0`. ([#117](https://github.com/action-stars/helm-workflows/pull/117)) _@dependabot_
25+
1826
## [v0.9.0] - 2026-01-21
1927

2028
### Added

0 commit comments

Comments
 (0)