Skip to content

Commit 7fe17c9

Browse files
[SW-1712] Pin ubuntu version in workflows (#148)
1 parent 3d21b06 commit 7fe17c9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
strategy:
1818
matrix:
19-
os: [windows-latest, ubuntu-latest, macos-latest]
19+
os: [windows-latest, ubuntu-22.04, macos-latest]
2020
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2121
exclude:
2222
- os: windows-latest
@@ -44,7 +44,7 @@ jobs:
4444
# If all tests pass:
4545
# Run coverage and upload to codecov
4646
needs: unittest
47-
runs-on: ubuntu-latest
47+
runs-on: ubuntu-22.04
4848
steps:
4949
- uses: actions/checkout@v2
5050
- name: Set up Python 3.8

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
max-parallel: 2
1717
matrix:
18-
os: [ubuntu-latest]
18+
os: [ubuntu-22.04]
1919
python-version: [3.8]
2020

2121
steps:

.github/workflows/sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
sphinx:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-22.04
99
if: ${{ github.event_name != 'pull_request' }}
1010
steps:
1111
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)