1919 runs-on : ubuntu-latest
2020 steps :
2121 - name : 👓 Checkout repository
22- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
22+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2323
2424 - name : 🏗️ Setup node environment
2525 uses : ./.github/actions/setup_node
3737 runs-on : ubuntu-latest
3838 steps :
3939 - name : 👓 Checkout repository
40- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
40+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4141
4242 - name : 🏗️ Setup node environment
4343 uses : ./.github/actions/setup_node
4848 run : pnpm test:coverage
4949
5050 - name : 💾 Upload Vitest Code Coverage
51- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
51+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
5252 with :
5353 name : lcov-vitest
5454 path : hivemq-edge-frontend/coverage-vitest/lcov.info
6060 runs-on : ubuntu-latest
6161 steps :
6262 - name : 👓 Checkout repository
63- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
63+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
6464
6565 - name : 🏗️ Setup node environment
6666 uses : ./.github/actions/setup_node
7171 run : pnpm run build --base=/
7272
7373 - name : Upload artifact
74- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
74+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
7575 with :
7676 name : application
7777 path : ./hivemq-edge-frontend/dist
@@ -83,10 +83,10 @@ jobs:
8383 needs : [ build_production ]
8484 steps :
8585 - name : 👓 Checkout repository
86- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
86+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
8787
8888 - name : Download artifact
89- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
89+ uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
9090 with :
9191 name : application
9292 path : ./hivemq-edge-frontend/dist
@@ -107,7 +107,7 @@ jobs:
107107 LOCAL_NONCE : ${{ steps.percy.outputs.nonce }}
108108 steps :
109109 - name : 👓 Checkout repository
110- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
110+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
111111 - id : percy
112112 run : |
113113 echo "nonce=$(date +'%s')" >> "$GITHUB_OUTPUT"
@@ -133,7 +133,7 @@ jobs:
133133 name : Cypress - ${{ matrix.cypress.target }}
134134 steps :
135135 - name : 👓 Checkout repository
136- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
136+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
137137
138138 - name : 🏗️ Setup node environment
139139 uses : ./.github/actions/setup_node
@@ -142,7 +142,7 @@ jobs:
142142 run-install : true
143143
144144 - name : Download artifact
145- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
145+ uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
146146 with :
147147 name : application
148148 path : ./hivemq-edge-frontend/dist
@@ -163,15 +163,15 @@ jobs:
163163 # after the test, store videos
164164 - name : 💾 Upload Cypress - ${{ matrix.cypress.target }} videos
165165 if : failure()
166- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
166+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
167167 with :
168168 name : cypress-${{ matrix.cypress.target }}-videos
169169 path : hivemq-edge-frontend/cypress/videos
170170 if-no-files-found : ignore
171171 retention-days : 1
172172
173173 - name : 💾 Upload Cypress Code Coverage
174- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
174+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
175175 with :
176176 name : lcov-cypress-${{ matrix.cypress.target }}
177177 path : hivemq-edge-frontend/coverage-cypress/lcov.info
@@ -186,11 +186,11 @@ jobs:
186186 runs-on : ubuntu-latest
187187 steps :
188188 - name : 👓 Checkout repository
189- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
189+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
190190 with :
191191 fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
192192 - name : Download all LCOV Artifacts
193- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
193+ uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
194194 with :
195195 path : hivemq-edge-frontend/coverage-combined
196196 pattern : lcov-*
@@ -201,7 +201,7 @@ jobs:
201201 ls -R ./coverage-combined
202202 ls -R **/**/*.info
203203 - name : SonarQube Scan
204- uses : SonarSource/sonarqube-scan-action@2500896589ef8f7247069a56136f8dc177c27ccf # v5
204+ uses : SonarSource/sonarqube-scan-action@fd88b7d7ccbaefd23d8f36f73b59db7a3d246602 # v6
205205 with :
206206 projectBaseDir : hivemq-edge-frontend
207207 args : >
@@ -218,7 +218,7 @@ jobs:
218218 PERCY_TOKEN : ${{ secrets.PERCY_TOKEN }}
219219 steps :
220220 - name : 👓 Checkout repository
221- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
221+ uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
222222
223223 - name : 🏗️ Setup node environment
224224 uses : ./.github/actions/setup_node
0 commit comments