Skip to content

Commit 4d3cace

Browse files
authored
chore(deps): Pin dependencies (#870)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | pinDigest | → `de0fac2` | | [actions/github-script](https://redirect.github.com/actions/github-script) | action | pinDigest | → `ed59741` | | [actions/setup-python](https://redirect.github.com/actions/setup-python) | action | pinDigest | → `a309ff8` | | [amannn/action-semantic-pull-request](https://redirect.github.com/amannn/action-semantic-pull-request) | action | pinDigest | → `48f2562` | | [azure/setup-helm](https://redirect.github.com/azure/setup-helm) | action | pinDigest | → `1a275c3` | | [googleapis/release-please-action](https://redirect.github.com/googleapis/release-please-action) | action | pinDigest | → `16a9c90` | | [helm/chart-releaser-action](https://redirect.github.com/helm/chart-releaser-action) | action | pinDigest | → `cae68fe` | | [helm/chart-testing-action](https://redirect.github.com/helm/chart-testing-action) | action | pinDigest | → `6ec842c` | | [stefanzweifel/git-auto-commit-action](https://redirect.github.com/stefanzweifel/git-auto-commit-action) | action | pinDigest | → `04702ed` | --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My42My4wIiwidXBkYXRlZEluVmVyIjoiNDMuNjMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
1 parent 5c2aa25 commit 4d3cace

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/auto_update_docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1717
with:
1818
token: ${{ secrets.GH_CQ_BOT }}
1919

@@ -22,15 +22,15 @@ jobs:
2222
docker run --rm --volume "$(pwd):/helm-docs" -u "$(id -u)" jnorwood/helm-docs:v1.11.0
2323
2424
- name: Get component from branch name
25-
uses: actions/github-script@v8
25+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
2626
id: component
2727
with:
2828
result-encoding: string
2929
script: |
3030
const lastPartOfBranch = context.ref.split('-').pop();
3131
return lastPartOfBranch;
3232
33-
- uses: stefanzweifel/git-auto-commit-action@v7
33+
- uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7
3434
with:
3535
file_pattern: charts/${{ steps.component.outputs.result }}/README.md
3636
commit_message: "chore: Update docs"

.github/workflows/lint_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,24 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v6
13+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1414
with:
1515
fetch-depth: 0
1616

1717
- name: Set up Helm
18-
uses: azure/setup-helm@v4
18+
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4
1919
with:
2020
version: v3.8.1
2121

2222
# Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and
2323
# yamllint (https://github.com/adrienverge/yamllint) which require Python
2424
- name: Set up Python
25-
uses: actions/setup-python@v6
25+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
2626
with:
2727
python-version: 3.14.3
2828

2929
- name: Set up chart-testing
30-
uses: helm/chart-testing-action@v2.8.0
30+
uses: helm/chart-testing-action@6ec842c01de15ebb84c8627d2744a0c2f2755c9f # v2.8.0
3131

3232
- name: Run chart-testing (lint PR)
3333
if: ${{ !startsWith(github.head_ref || '', 'release-please-') }}

.github/workflows/pr_title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
# Please look up the latest version from
1818
# https://github.com/amannn/action-semantic-pull-request/releases
19-
- uses: amannn/action-semantic-pull-request@v6
19+
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2222
with:

.github/workflows/release_please.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
release-please:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: googleapis/release-please-action@v4
15+
- uses: googleapis/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4
1616
id: release
1717
with:
1818
token: ${{ secrets.GH_CQ_BOT }}
1919

2020
- name: Checkout
21-
uses: actions/checkout@v6
21+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2222
if: |
2323
startsWith(github.event.head_commit.message, 'chore(main): Release')
2424
with:
@@ -34,7 +34,7 @@ jobs:
3434
- name: Install Helm
3535
if: |
3636
startsWith(github.event.head_commit.message, 'chore(main): Release')
37-
uses: azure/setup-helm@v4
37+
uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4
3838
with:
3939
version: v3.8.1
4040

@@ -49,14 +49,14 @@ jobs:
4949
- name: Run chart-releaser
5050
if: |
5151
startsWith(github.event.head_commit.message, 'chore(main): Release')
52-
uses: helm/chart-releaser-action@v1.7.0
52+
uses: helm/chart-releaser-action@cae68fefc6b5f367a0275617c9f83181ba54714f # v1.7.0
5353
with:
5454
skip_existing: true
5555
env:
5656
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
5757

5858
- name: Get PR data
59-
uses: actions/github-script@v8
59+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
6060
if: |
6161
startsWith(github.event.head_commit.message, 'chore(main): Release')
6262
id: get_pr_data
@@ -71,7 +71,7 @@ jobs:
7171
).data[0];
7272
7373
- name: Update PR labels
74-
uses: actions/github-script@v8
74+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
7575
if: |
7676
startsWith(github.event.head_commit.message, 'chore(main): Release')
7777
with:

0 commit comments

Comments
 (0)