Skip to content

Commit

Permalink
revert os pin
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Dec 10, 2024
1 parent 0f81cbd commit c3faabc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/scripts/integration-test-matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = ({ context }) => {
) {
// always run tests on ubuntu by default
include.push({
os: "ubuntu-22.04",
os: "ubuntu-latest",
adapter,
"python-version": pythonVersion,
});
Expand Down Expand Up @@ -68,7 +68,7 @@ module.exports = ({ context }) => {
for (const adapter of supportedAdapters) {
for (const pythonVersion of supportedPythonVersions) {
include.push({
os: 'ubuntu-22.04',
os: 'ubuntu-latest',
adapter: adapter,
"python-version": pythonVersion,
});
Expand All @@ -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-22.04", "macos-14"]) {
for (const operatingSystem of ["windows-latest", "macos-14"]) {
include.push({
os: operatingSystem,
adapter: adapter,
Expand Down

0 comments on commit c3faabc

Please sign in to comment.