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
@@ -263,10 +263,10 @@ jobs:
263263
264264 steps :
265265 - name : Checkout
266- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
266+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
267267
268268 - name : Checkout Python Environment Tools
269- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
269+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
270270 with :
271271 repository : ' microsoft/python-environment-tools'
272272 path : ' python-env-tools-src'
@@ -280,7 +280,7 @@ jobs:
280280 uses : dtolnay/rust-toolchain@stable
281281
282282 - name : Cache Rust build
283- uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3 .0
283+ uses : actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1 .0
284284 with :
285285 path : |
286286 ~/.cargo/registry
@@ -309,13 +309,13 @@ jobs:
309309 shell : bash
310310
311311 - name : Install Node
312- uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
312+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
313313 with :
314314 node-version : ${{ env.NODE_VERSION }}
315315 cache : ' npm'
316316
317317 - name : Install Python
318- uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6 .0
318+ uses : actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0 .0
319319 with :
320320 python-version : ${{ matrix.python-version }}
321321
@@ -329,14 +329,14 @@ jobs:
329329 run : npm run compile-tests
330330
331331 - name : Set up Conda
332- uses : conda-incubator/setup-miniconda@fc2d68f6413eb2d87b895e92f8584b5b94a10167 # v3
332+ uses : conda-incubator/setup-miniconda@8ee1f361103df19b6f8c8655fd3967a8ecb162d5 # v4.0.1
333333 with :
334334 activate-environment : ' '
335335 auto-activate : false
336336
337337 - name : Run Integration Tests (Linux)
338338 if : runner.os == 'Linux'
339- uses : GabrielBB/xvfb-action@86d97bde4a65fe9b290c0b3fb92c2c4ed0e5302d # v1.6
339+ uses : GabrielBB/xvfb-action@b706e4e27b14669b486812790492dc50ca16b465 # v1.7
340340 with :
341341 run : npm run integration-test
342342
@@ -356,16 +356,16 @@ jobs:
356356
357357 steps :
358358 - name : Checkout
359- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3 .1
359+ uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0 .1
360360
361361 - name : Install Node
362- uses : actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4 .0
362+ uses : actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0 .0
363363 with :
364364 node-version : ${{ env.NODE_VERSION }}
365365 cache : ' npm'
366366
367367 - name : Install Python
368- uses : actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6 .0
368+ uses : actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0 .0
369369 with :
370370 python-version : ${{ matrix.python-version }}
371371
@@ -380,7 +380,7 @@ jobs:
380380
381381 - name : Run Integration Tests Multi-Root (Linux)
382382 if : runner.os == 'Linux'
383- uses : GabrielBB/xvfb-action@86d97bde4a65fe9b290c0b3fb92c2c4ed0e5302d # v1.6
383+ uses : GabrielBB/xvfb-action@b706e4e27b14669b486812790492dc50ca16b465 # v1.7
384384 with :
385385 run : npm run integration-test-multiroot
386386
0 commit comments