Skip to content

Commit d6f471f

Browse files
committed
Update workflows: use ubuntu-24.04, revert release actions to v3
1 parent 2649fe1 commit d6f471f

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/draft-pdf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ on: [workflow_dispatch]
22

33
jobs:
44
paper:
5-
runs-on: ubuntu-latest
5+
runs-on: ubuntu-24.04
66
name: Paper Draft
77
steps:
88
- name: Checkout

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ on:
88
jobs:
99
release:
1010
name: Deploy release to PyPI
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Checkout source
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v3
1515
- name: Set up Python
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v3
1717
with:
18-
python-version: \"3.11.14\"
18+
python-version: \"3.11\"
1919
- name: Install dependencies
2020
run: pip install wheel build
2121
- name: Build package

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on: [push, pull_request]
44

55
jobs:
66
Linting:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-24.04
88

99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- name: Set up Python 3.11
1212
uses: actions/setup-python@v3
1313
with:
@@ -18,7 +18,7 @@ jobs:
1818
pre-commit run --all-files
1919
Linux:
2020
needs: Linting
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-24.04
2222
strategy:
2323
max-parallel: 8
2424
matrix:

0 commit comments

Comments
 (0)