Skip to content

Commit 64118ff

Browse files
Bump GabrielBB/xvfb-action from 1.5 to 1.6 (#18025)
Bumps [GabrielBB/xvfb-action](https://github.com/GabrielBB/xvfb-action) from 1.5 to 1.6. - [Release notes](https://github.com/GabrielBB/xvfb-action/releases) - [Commits](GabrielBB/xvfb-action@v1.5...v1.6) --- updated-dependencies: - dependency-name: GabrielBB/xvfb-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 62ae848 commit 64118ff

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ jobs:
237237
env:
238238
TEST_FILES_SUFFIX: testvirtualenvs
239239
CI_PYTHON_VERSION: ${{ matrix.python }}
240-
uses: GabrielBB/xvfb-action@v1.5
240+
uses: GabrielBB/xvfb-action@v1.6
241241
with:
242242
run: npm run testSingleWorkspace
243243
working-directory: ${{ env.special-working-directory }}
@@ -246,7 +246,7 @@ jobs:
246246
- name: Run single-workspace tests
247247
env:
248248
CI_PYTHON_VERSION: ${{ matrix.python }}
249-
uses: GabrielBB/xvfb-action@v1.5
249+
uses: GabrielBB/xvfb-action@v1.6
250250
with:
251251
run: npm run testSingleWorkspace
252252
working-directory: ${{ env.special-working-directory }}
@@ -255,7 +255,7 @@ jobs:
255255
- name: Run multi-workspace tests
256256
env:
257257
CI_PYTHON_VERSION: ${{ matrix.python }}
258-
uses: GabrielBB/xvfb-action@v1.5
258+
uses: GabrielBB/xvfb-action@v1.6
259259
with:
260260
run: npm run testMultiWorkspace
261261
working-directory: ${{ env.special-working-directory }}
@@ -264,7 +264,7 @@ jobs:
264264
- name: Run debugger tests
265265
env:
266266
CI_PYTHON_VERSION: ${{ matrix.python }}
267-
uses: GabrielBB/xvfb-action@v1.5
267+
uses: GabrielBB/xvfb-action@v1.6
268268
with:
269269
run: npm run testDebugger
270270
working-directory: ${{ env.special-working-directory }}
@@ -356,7 +356,7 @@ jobs:
356356
# VSC_PYTHON_CI_TEST_VSC_CHANNEL: insiders
357357
# TEST_FILES_SUFFIX: insiders.test
358358
# CODE_TESTS_WORKSPACE: ./src/testMultiRootWkspc/smokeTests
359-
# uses: GabrielBB/xvfb-action@v1.5
359+
# uses: GabrielBB/xvfb-action@v1.6
360360
# with:
361361
# run: node --no-force-async-hooks-checks ./out/test/standardTest.js
362362

.github/workflows/pr-check.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ jobs:
219219
env:
220220
TEST_FILES_SUFFIX: testvirtualenvs
221221
CI_PYTHON_VERSION: ${{ matrix.python }}
222-
uses: GabrielBB/xvfb-action@v1.5
222+
uses: GabrielBB/xvfb-action@v1.6
223223
with:
224224
run: npm run testSingleWorkspace
225225
working-directory: ${{ env.special-working-directory }}
@@ -228,7 +228,7 @@ jobs:
228228
- name: Run single-workspace tests
229229
env:
230230
CI_PYTHON_VERSION: ${{ matrix.python }}
231-
uses: GabrielBB/xvfb-action@v1.5
231+
uses: GabrielBB/xvfb-action@v1.6
232232
with:
233233
run: npm run testSingleWorkspace
234234
working-directory: ${{ env.special-working-directory }}
@@ -237,7 +237,7 @@ jobs:
237237
- name: Run multi-workspace tests
238238
env:
239239
CI_PYTHON_VERSION: ${{ matrix.python }}
240-
uses: GabrielBB/xvfb-action@v1.5
240+
uses: GabrielBB/xvfb-action@v1.6
241241
with:
242242
run: npm run testMultiWorkspace
243243
working-directory: ${{ env.special-working-directory }}
@@ -246,7 +246,7 @@ jobs:
246246
- name: Run debugger tests
247247
env:
248248
CI_PYTHON_VERSION: ${{ matrix.python }}
249-
uses: GabrielBB/xvfb-action@v1.5
249+
uses: GabrielBB/xvfb-action@v1.6
250250
with:
251251
run: npm run testDebugger
252252
working-directory: ${{ env.special-working-directory }}
@@ -340,7 +340,7 @@ jobs:
340340
# VSC_PYTHON_CI_TEST_VSC_CHANNEL: insiders
341341
# TEST_FILES_SUFFIX: insiders.test
342342
# CODE_TESTS_WORKSPACE: ./src/testMultiRootWkspc/smokeTests
343-
# uses: GabrielBB/xvfb-action@v1.5
343+
# uses: GabrielBB/xvfb-action@v1.6
344344
# with:
345345
# run: node --no-force-async-hooks-checks ./out/test/standardTest.js
346346

@@ -470,15 +470,15 @@ jobs:
470470
TEST_FILES_SUFFIX: testvirtualenvs
471471
CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
472472
CI_DISABLE_AUTO_SELECTION: 1
473-
uses: GabrielBB/xvfb-action@v1.5
473+
uses: GabrielBB/xvfb-action@v1.6
474474
with:
475475
run: npm run testSingleWorkspace:cover
476476

477477
- name: Run single-workspace tests
478478
env:
479479
CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
480480
CI_DISABLE_AUTO_SELECTION: 1
481-
uses: GabrielBB/xvfb-action@v1.5
481+
uses: GabrielBB/xvfb-action@v1.6
482482
with:
483483
run: npm run testSingleWorkspace:cover
484484

@@ -487,7 +487,7 @@ jobs:
487487
# env:
488488
# CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
489489
# CI_DISABLE_AUTO_SELECTION: 1
490-
# uses: GabrielBB/xvfb-action@v1.5
490+
# uses: GabrielBB/xvfb-action@v1.6
491491
# with:
492492
# run: npm run testMultiWorkspace:cover
493493

@@ -496,7 +496,7 @@ jobs:
496496
# env:
497497
# CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
498498
# CI_DISABLE_AUTO_SELECTION: 1
499-
# uses: GabrielBB/xvfb-action@v1.5
499+
# uses: GabrielBB/xvfb-action@v1.6
500500
# with:
501501
# run: npm run testDebugger:cover
502502

0 commit comments

Comments
 (0)