1717
1818 steps :
1919 - name : Checkout
20- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
20+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
2121
2222 - name : Build VSIX
2323 uses : ./.github/actions/build-vsix
@@ -30,10 +30,10 @@ jobs:
3030
3131 steps :
3232 - name : Checkout
33- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
33+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
3434
3535 - name : Install Node
36- uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
36+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
3737 with :
3838 node-version : ${{ env.NODE_VERSION }}
3939 cache : ' npm'
@@ -54,10 +54,10 @@ jobs:
5454
5555 steps :
5656 - name : Checkout
57- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
57+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
5858
5959 - name : Install Node
60- uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
60+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
6161 with :
6262 node-version : ${{ env.NODE_VERSION }}
6363 cache : ' npm'
@@ -86,10 +86,10 @@ jobs:
8686
8787 steps :
8888 - name : Checkout
89- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
89+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
9090
9191 - name : Checkout Python Environment Tools
92- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
92+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
9393 with :
9494 repository : ' microsoft/python-environment-tools'
9595 path : ' python-env-tools-src'
@@ -103,7 +103,7 @@ jobs:
103103 uses : dtolnay/rust-toolchain@stable
104104
105105 - name : Cache Rust build
106- uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3 .0
106+ uses : actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1 .0
107107 with :
108108 path : |
109109 ~/.cargo/registry
@@ -132,13 +132,13 @@ jobs:
132132 shell : bash
133133
134134 - name : Install Node
135- uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
135+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
136136 with :
137137 node-version : ${{ env.NODE_VERSION }}
138138 cache : ' npm'
139139
140140 - name : Install Python
141- uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6 .0
141+ uses : actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0 .0
142142 with :
143143 python-version : ${{ matrix.python-version }}
144144
@@ -153,7 +153,7 @@ jobs:
153153
154154 - name : Run Smoke Tests (Linux)
155155 if : runner.os == 'Linux'
156- uses : GabrielBB/xvfb-action@86d97bde4a65fe9b290c0b3fb92c2c4ed0e5302d # v1.6
156+ uses : GabrielBB/xvfb-action@b706e4e27b14669b486812790492dc50ca16b465 # v1.7
157157 with :
158158 run : npm run smoke-test
159159
@@ -173,10 +173,10 @@ jobs:
173173
174174 steps :
175175 - name : Checkout
176- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
176+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
177177
178178 - name : Checkout Python Environment Tools
179- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
179+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
180180 with :
181181 repository : ' microsoft/python-environment-tools'
182182 path : ' python-env-tools-src'
@@ -190,7 +190,7 @@ jobs:
190190 uses : dtolnay/rust-toolchain@stable
191191
192192 - name : Cache Rust build
193- uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3 .0
193+ uses : actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1 .0
194194 with :
195195 path : |
196196 ~/.cargo/registry
@@ -219,13 +219,13 @@ jobs:
219219 shell : bash
220220
221221 - name : Install Node
222- uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
222+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
223223 with :
224224 node-version : ${{ env.NODE_VERSION }}
225225 cache : ' npm'
226226
227227 - name : Install Python
228- uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6 .0
228+ uses : actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0 .0
229229 with :
230230 python-version : ${{ matrix.python-version }}
231231
@@ -240,7 +240,7 @@ jobs:
240240
241241 - name : Run E2E Tests (Linux)
242242 if : runner.os == 'Linux'
243- uses : GabrielBB/xvfb-action@86d97bde4a65fe9b290c0b3fb92c2c4ed0e5302d # v1.6
243+ uses : GabrielBB/xvfb-action@b706e4e27b14669b486812790492dc50ca16b465 # v1.7
244244 with :
245245 run : npm run e2e-test
246246
@@ -260,10 +260,10 @@ jobs:
260260
261261 steps :
262262 - name : Checkout
263- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
263+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
264264
265265 - name : Checkout Python Environment Tools
266- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
266+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
267267 with :
268268 repository : ' microsoft/python-environment-tools'
269269 path : ' python-env-tools-src'
@@ -277,7 +277,7 @@ jobs:
277277 uses : dtolnay/rust-toolchain@stable
278278
279279 - name : Cache Rust build
280- uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3 .0
280+ uses : actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1 .0
281281 with :
282282 path : |
283283 ~/.cargo/registry
@@ -306,13 +306,13 @@ jobs:
306306 shell : bash
307307
308308 - name : Install Node
309- uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
309+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
310310 with :
311311 node-version : ${{ env.NODE_VERSION }}
312312 cache : ' npm'
313313
314314 - name : Install Python
315- uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6 .0
315+ uses : actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0 .0
316316 with :
317317 python-version : ${{ matrix.python-version }}
318318
@@ -327,7 +327,7 @@ jobs:
327327
328328 - name : Run Integration Tests (Linux)
329329 if : runner.os == 'Linux'
330- uses : GabrielBB/xvfb-action@86d97bde4a65fe9b290c0b3fb92c2c4ed0e5302d # v1.6
330+ uses : GabrielBB/xvfb-action@b706e4e27b14669b486812790492dc50ca16b465 # v1.7
331331 with :
332332 run : npm run integration-test
333333
@@ -347,16 +347,16 @@ jobs:
347347
348348 steps :
349349 - name : Checkout
350- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
350+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
351351
352352 - name : Install Node
353- uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
353+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
354354 with :
355355 node-version : ${{ env.NODE_VERSION }}
356356 cache : ' npm'
357357
358358 - name : Install Python
359- uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6 .0
359+ uses : actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0 .0
360360 with :
361361 python-version : ${{ matrix.python-version }}
362362
@@ -371,7 +371,7 @@ jobs:
371371
372372 - name : Run Integration Tests Multi-Root (Linux)
373373 if : runner.os == 'Linux'
374- uses : GabrielBB/xvfb-action@86d97bde4a65fe9b290c0b3fb92c2c4ed0e5302d # v1.6
374+ uses : GabrielBB/xvfb-action@b706e4e27b14669b486812790492dc50ca16b465 # v1.7
375375 with :
376376 run : npm run integration-test-multiroot
377377
0 commit comments