From 0273da4cc1ce094c4d31ce5650dfd9096a475910 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Mon, 9 Dec 2024 12:59:53 -0500 Subject: [PATCH] hard pin ubuntu images to avoid network disconnects while GHA migrates ubuntu-latest --- .github/scripts/integration-test-matrix.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/scripts/integration-test-matrix.js b/.github/scripts/integration-test-matrix.js index e2c88b00b..5ce879169 100644 --- a/.github/scripts/integration-test-matrix.js +++ b/.github/scripts/integration-test-matrix.js @@ -29,7 +29,7 @@ module.exports = ({ context }) => { ) { // always run tests on ubuntu by default include.push({ - os: "ubuntu-latest", + os: "ubuntu-22.04", adapter, "python-version": pythonVersion, }); @@ -68,7 +68,7 @@ module.exports = ({ context }) => { for (const adapter of supportedAdapters) { for (const pythonVersion of supportedPythonVersions) { include.push({ - os: 'ubuntu-latest', + os: 'ubuntu-22.04', adapter: adapter, "python-version": pythonVersion, }); @@ -78,7 +78,7 @@ module.exports = ({ context }) => { // additionally include runs for all adapters, on macos and windows, // but only for the default python version for (const adapter of supportedAdapters) { - for (const operatingSystem of ["windows-latest", "macos-14"]) { + for (const operatingSystem of ["windows-22.04", "macos-14"]) { include.push({ os: operatingSystem, adapter: adapter,