Skip to content

Commit 9dfa67b

Browse files
committed
Update Linux / Mac versions in actions
1 parent 809f513 commit 9dfa67b

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/coverage.yml

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

1010
jobs:
1111
test-coverage:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313
environment: Base
1414

1515
services:

.github/workflows/fusion-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name: Generate Fusion docs
88
jobs:
99

1010
docs:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212

1313
permissions:
1414
contents: write

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-latest
88

99
strategy:
1010
matrix:

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
strategy:
6363
matrix:
6464
os:
65-
- ubuntu-20.04
65+
- ubuntu-24.04
6666
- macos-13
6767
- windows-2019
6868

@@ -139,14 +139,14 @@ jobs:
139139
mv ./wheelhouse/*.whl ./dist/.
140140
141141
- name: Archive source dist and wheel
142-
uses: actions/upload-artifact@v3
142+
uses: actions/upload-artifact@v4
143143
with:
144144
name: artifacts
145145
path: dist
146146
retention-days: 2
147147

148148
# - name: Archive conda
149-
# uses: actions/upload-artifact@v3
149+
# uses: actions/upload-artifact@v4
150150
# with:
151151
# name: conda-${{ matrix.os }}
152152
# path: ./conda-bld
@@ -164,7 +164,7 @@ jobs:
164164
pip install twine
165165
166166
- name: Download wheels and sdist
167-
uses: actions/download-artifact@v3
167+
uses: actions/download-artifact@v4
168168
with:
169169
name: artifacts
170170
path: dist

.github/workflows/smoke-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010

1111
setup-database:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313

1414
steps:
1515
- uses: actions/checkout@v4
@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
matrix:
4949
os:
50-
- ubuntu-20.04
50+
- ubuntu-24.04
5151
python-version:
5252
- "3.8"
5353
- "3.9"
@@ -63,17 +63,17 @@ jobs:
6363
- 1
6464
# Manually include a few runs of specific configurations
6565
include:
66-
- os: ubuntu-20.04
66+
- os: ubuntu-24.04
6767
python-version: "3.11"
6868
driver: mysql
6969
pure-python: 1
7070
buffered: 1
71-
# - os: ubuntu-20.04
71+
# - os: ubuntu-24.04
7272
# python-version: "3.11"
7373
# driver: mysql
7474
# pure-python: 1
7575
# buffered: 0
76-
# - os: ubuntu-20.04
76+
# - os: ubuntu-24.04
7777
# python-version: "3.11"
7878
# driver: mysql
7979
# pure-python: 0
@@ -136,7 +136,7 @@ jobs:
136136
shutdown-database:
137137
needs: [setup-database, smoke-test]
138138
if: ${{ always() }}
139-
runs-on: ubuntu-20.04
139+
runs-on: ubuntu-latest
140140

141141
steps:
142142
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)