1919 runs-on : ubuntu-latest
2020 steps :
2121 - name : 👓 Checkout repository
22- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
22+ uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
6464
6565 - name : 🏗️ Setup node environment
6666 uses : ./.github/actions/setup_node
7373 VITE_COVERAGE : true
7474
7575 - name : Upload artifact
76- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
76+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
7777 with :
7878 name : application-instrumented
7979 path : ./hivemq-edge-frontend/dist
8484 runs-on : ubuntu-latest
8585 steps :
8686 - name : 👓 Checkout repository
87- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
87+ uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
8888
8989 - name : 🏗️ Setup node environment
9090 uses : ./.github/actions/setup_node
9595 run : pnpm run build --base=/
9696
9797 - name : Upload artifact
98- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
98+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
9999 with :
100100 name : application-clean
101101 path : ./hivemq-edge-frontend/dist
@@ -107,10 +107,10 @@ jobs:
107107 needs : [ build_production ]
108108 steps :
109109 - name : 👓 Checkout repository
110- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
110+ uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
111111
112112 - name : Download artifact
113- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
113+ uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
114114 with :
115115 name : application-clean
116116 path : ./hivemq-edge-frontend/dist
@@ -131,7 +131,7 @@ jobs:
131131 LOCAL_NONCE : ${{ steps.percy.outputs.nonce }}
132132 steps :
133133 - name : 👓 Checkout repository
134- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
134+ uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
135135 - id : percy
136136 run : |
137137 echo "nonce=$(date +'%s')" >> "$GITHUB_OUTPUT"
@@ -168,7 +168,7 @@ jobs:
168168 name : Cypress - ${{ matrix.cypress.target }}
169169 steps :
170170 - name : 👓 Checkout repository
171- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
171+ uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
172172
173173 - name : 🏗️ Setup node environment
174174 uses : ./.github/actions/setup_node
@@ -177,7 +177,7 @@ jobs:
177177 run-install : true
178178
179179 - name : Download artifact
180- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
180+ uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
181181 with :
182182 name : application-instrumented
183183 path : ./hivemq-edge-frontend/dist
@@ -198,7 +198,7 @@ jobs:
198198 # after the test, store videos
199199 - name : 💾 Upload Cypress - ${{ matrix.cypress.target }} videos
200200 if : failure()
201- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
201+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
202202 with :
203203 name : cypress-${{ matrix.cypress.target }}-videos
204204 path : hivemq-edge-frontend/cypress/videos
@@ -207,7 +207,7 @@ jobs:
207207
208208 - name : 💾 Upload Cypress Code Coverage
209209 if : success() || failure()
210- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
210+ uses : actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
211211 with :
212212 name : lcov-cypress-${{ matrix.cypress.target }}
213213 path : hivemq-edge-frontend/coverage-cypress/lcov.info
@@ -222,11 +222,11 @@ jobs:
222222 runs-on : ubuntu-latest
223223 steps :
224224 - name : 👓 Checkout repository
225- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
225+ uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
226226 with :
227227 fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
228228 - name : Download all LCOV Artifacts
229- uses : actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
229+ uses : actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
230230 with :
231231 path : hivemq-edge-frontend/coverage-combined
232232 pattern : lcov-*
@@ -237,7 +237,7 @@ jobs:
237237 ls -R ./coverage-combined
238238 ls -R **/**/*.info
239239 - name : SonarQube Scan
240- uses : SonarSource/sonarqube-scan-action@2500896589ef8f7247069a56136f8dc177c27ccf # v5
240+ uses : SonarSource/sonarqube-scan-action@fd88b7d7ccbaefd23d8f36f73b59db7a3d246602 # v6
241241 with :
242242 projectBaseDir : hivemq-edge-frontend
243243 args : >
@@ -256,7 +256,7 @@ jobs:
256256 PERCY_TOKEN : ${{ secrets.PERCY_TOKEN }}
257257 steps :
258258 - name : 👓 Checkout repository
259- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
259+ uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
260260
261261 - name : 🏗️ Setup node environment
262262 uses : ./.github/actions/setup_node
0 commit comments