Skip to content

Commit a08a583

Browse files
deps: update patch-updates
1 parent b7b02f5 commit a08a583

34 files changed

+72
-72
lines changed

.github/actions/install-tool-versions/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ runs:
6060
6161
- name: Restore cache
6262
id: restore-tools-cache
63-
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5
63+
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
6464
with:
6565
path: ${{ env.ASDF_DIR }}
6666
key: ${{ runner.os }}-tools-${{ hashFiles('.tool-versions') }}
@@ -195,7 +195,7 @@ runs:
195195
fi
196196
197197
- name: Save cache
198-
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5
198+
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
199199
with:
200200
path: ${{ env.ASDF_DIR }}
201201
key: ${{ runner.os }}-tools-${{ hashFiles('.tool-versions') }}

.github/actions/playwright-integration-tests/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ runs:
4949
using: composite
5050
steps:
5151
- name: Checkout
52-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
52+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
5353
with:
5454
repository: camunda/camunda-platform-helm
5555
ref: ${{ inputs.camunda-helm-git-ref }}
@@ -162,15 +162,15 @@ runs:
162162
CLUSTER_NAME: ${{ env.CLUSTER_NAME }}
163163

164164
- name: Cache - node_modules
165-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
165+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
166166
with:
167167
path: ${{ env.ABSOLUTE_TEST_CHART_DIR }}/test/integration/testsuites/node_modules
168168
key: node_modules-${{ runner.os }}-${{ hashFiles(format('{0}/test/integration/testsuites/package-lock.json', env.ABSOLUTE_TEST_CHART_DIR)) }}
169169
restore-keys: |
170170
node_modules-${{ runner.os }}-
171171
172172
- name: Cache - Playwright
173-
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
173+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
174174
with:
175175
path: ~/.cache/ms-playwright
176176
key: playwright-automation-${{ runner.os }}-${{ hashFiles(format('{0}/test/integration/testsuites/package-lock.json', env.ABSOLUTE_TEST_CHART_DIR)) }}

.github/workflows/build-ci-runner-image.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
packages: write
3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
40+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
4141

4242
- name: Generate image tags
4343
id: tags
@@ -66,10 +66,10 @@ jobs:
6666
echo " Playwright Runner: ${PW_TAGS}"
6767
6868
- name: Set up Docker Buildx
69-
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3
69+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
7070

7171
- name: Login to GitHub Container Registry
72-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
72+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
7373
with:
7474
registry: ${{ env.REGISTRY }}
7575
username: ${{ github.actor }}
@@ -80,7 +80,7 @@ jobs:
8080
cp .tool-versions .github/docker/ci-runner/.tool-versions
8181
8282
- name: Build and push CI Runner image
83-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6
83+
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
8484
with:
8585
context: .github/docker/ci-runner
8686
file: .github/docker/ci-runner/Dockerfile
@@ -97,7 +97,7 @@ jobs:
9797
cp .tool-versions .github/docker/playwright-runner/.tool-versions
9898
9999
- name: Build and push Playwright Runner image
100-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6
100+
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
101101
with:
102102
context: .github/docker/playwright-runner
103103
file: .github/docker/playwright-runner/Dockerfile
@@ -137,7 +137,7 @@ jobs:
137137
packages: read
138138
steps:
139139
- name: Login to GitHub Container Registry
140-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
140+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
141141
with:
142142
registry: ${{ env.REGISTRY }}
143143
username: ${{ github.actor }}

.github/workflows/chart-build-dev.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
chart-matrix: ${{ steps.matrix.outputs.chart-matrix }}
8484
steps:
8585
- name: Checkout
86-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
86+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
8787
with:
8888
fetch-depth: 0
8989

@@ -157,7 +157,7 @@ jobs:
157157
CHART_RELEASE_COSIGN_CERTIFICATE_OIDC_ISSUER: "https://token.actions.githubusercontent.com"
158158
steps:
159159
- name: Checkout
160-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
160+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
161161
with:
162162
fetch-depth: 0
163163

.github/workflows/chart-chores.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
app_id: ${{ secrets.GH_APP_ID_DISTRO_CI }}
5151
private_key: ${{ secrets.GH_APP_PRIVATE_KEY_DISTRO_CI }}
5252
- name: Checkout
53-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
53+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
5454
with:
5555
repository: ${{ github.event.pull_request.head.repo.full_name }}
5656
ref: ${{ github.event.pull_request.head.ref }}
@@ -76,7 +76,7 @@ jobs:
7676
- name: Add Helm repos
7777
run: |
7878
make helm.repos-add
79-
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
79+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
8080
with:
8181
path: |
8282
~/.cache/go-build

.github/workflows/chart-promote-rc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
echo "rc_latest_tag=${chart_major}-rc-latest" | tee -a $GITHUB_OUTPUT
149149
150150
- name: Checkout at commit SHA
151-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
151+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
152152
with:
153153
ref: ${{ steps.parse.outputs.sha }}
154154
fetch-depth: 0
@@ -161,7 +161,7 @@ jobs:
161161
fi
162162
163163
- name: Login to Harbor
164-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
164+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
165165
with:
166166
registry: ${{ env.HARBOR_REGISTRY }}
167167
username: ${{ env.HARBOR_REGISTRY_USER }}

.github/workflows/chart-public-files.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
permissions:
2424
contents: write
2525
steps:
26-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
26+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2727
with:
2828
ref: gh-pages
29-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
29+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3030
with:
3131
path: main
3232
- name: Copy values files

.github/workflows/chart-release-artifact-verify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Install Cosign
1717
uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
18-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
18+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1919
with:
2020
fetch-depth: 0
2121
- name: Get chart versions

.github/workflows/chart-release-candidate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
app_id: "${{ secrets.GH_APP_ID_DISTRO_CI }}"
3333
private_key: "${{ secrets.GH_APP_PRIVATE_KEY_DISTRO_CI }}"
3434
- name: Checkout
35-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
35+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3636
with:
3737
ref: main
3838
token: "${{ steps.generate-github-token.outputs.token }}"

.github/workflows/chart-release-chores.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
app_id: ${{ secrets.GH_APP_ID_DISTRO_CI }}
2828
private_key: ${{ secrets.GH_APP_PRIVATE_KEY_DISTRO_CI }}
2929
- name: Checkout
30-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
30+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3131
with:
3232
repository: ${{ github.event.pull_request.head.repo.full_name }}
3333
ref: ${{ github.event.pull_request.head.ref }}
@@ -54,7 +54,7 @@ jobs:
5454
- name: Add Helm repos
5555
run: |
5656
make helm.repos-add
57-
- uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5
57+
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5
5858
with:
5959
path: |
6060
~/.cache/go-build

0 commit comments

Comments
 (0)