Skip to content

Commit 27c377c

Browse files
chore(deps): update all non-major github actions dependencies (#1451)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7d225ae commit 27c377c

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/actions/setup_node/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ inputs:
1111
runs:
1212
using: "composite"
1313
steps:
14-
- uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4
14+
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4
1515
name: Install pnpm
1616
id: pnpm-install
1717
with:
1818
version: 10
1919
run_install: ${{ inputs.run-install }}
2020

21-
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
21+
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
2222
with:
2323
node-version: 22.20.0
2424
cache: 'pnpm'

.github/workflows/check-frontend.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,13 @@ jobs:
112112
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
113113

114114
- name: Download artifact
115-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8
115+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
116116
with:
117117
name: application-clean
118118
path: ./hivemq-edge-frontend/dist
119119

120120
- name: 🚥 Run Lighthouse audits
121-
uses: treosh/lighthouse-ci-action@fcd65974f7c4c2bf0ee9d09b84d2489183c29726 # v12
121+
uses: treosh/lighthouse-ci-action@3e7e23fb74242897f95c0ba9cabad3d0227b9b18 # v12
122122
id: lighthouse
123123
with:
124124
temporaryPublicStorage: true # upload lighthouse report to the temporary storage
@@ -179,7 +179,7 @@ jobs:
179179
run-install: true
180180

181181
- name: Download artifact
182-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8
182+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
183183
with:
184184
name: application-instrumented
185185
path: ./hivemq-edge-frontend/dist
@@ -228,7 +228,7 @@ jobs:
228228
with:
229229
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
230230
- name: Download all LCOV Artifacts
231-
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8
231+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
232232
with:
233233
path: hivemq-edge-frontend/coverage-combined
234234
pattern: lcov-*

.github/workflows/check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fetch-depth: 0
3535

3636
- name: Check for backend changes
37-
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
37+
uses: dorny/paths-filter@d1c1ffe0248fe513906c8e24db8ea791d46f8590 # v3.0.3
3838
id: backend
3939
with:
4040
filters: |
@@ -46,7 +46,7 @@ jobs:
4646
- '.github/**'
4747
4848
- name: Check for frontend changes
49-
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
49+
uses: dorny/paths-filter@d1c1ffe0248fe513906c8e24db8ea791d46f8590 # v3.0.3
5050
id: frontend
5151
with:
5252
filters: |
@@ -55,7 +55,7 @@ jobs:
5555
- '.github/**'
5656
5757
- name: Check for openAPI changes
58-
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
58+
uses: dorny/paths-filter@d1c1ffe0248fe513906c8e24db8ea791d46f8590 # v3.0.3
5959
id: openapi
6060
with:
6161
filters: |

.github/workflows/snyk-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
github-token: ${{ secrets.JENKINS_GITHUB_TOKEN }}
4141

4242
- name: Setup Node.js
43-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
43+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
4444
with:
4545
node-version: '20.13.1'
4646

.github/workflows/snyk-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
5050

5151
- name: Setup Node.js
52-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
52+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
5353
with:
5454
node-version: '20.13.1'
5555

.github/workflows/snyk-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
3434

3535
- name: Setup Node.js
36-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
36+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
3737
with:
3838
node-version: '20.13.1'
3939

0 commit comments

Comments
 (0)