Skip to content

Commit a9bc84e

Browse files
committed
CI: update actions
1 parent 44be3f9 commit a9bc84e

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ jobs:
5454
"texlive-science",
5555
]
5656
steps:
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5858
- name: Set up Python
59-
uses: actions/setup-python@v4
59+
uses: actions/setup-python@v5
6060
with:
61-
python-version: "3.8"
61+
python-version: "3.9"
6262
cache: pip
6363

6464
- name: Install dependencies
@@ -81,7 +81,7 @@ jobs:
8181
mkdir build
8282
python -m texlive build ${{ matrix.package }} $PWD\build
8383
84-
- uses: actions/upload-artifact@v3
84+
- uses: actions/upload-artifact@v4
8585
if: ${{ github.event_name != 'release' }}
8686
with:
8787
path: build/*
@@ -93,11 +93,11 @@ jobs:
9393
if: ${{ github.event_name == 'release' }}
9494
needs: texlive-built
9595
steps:
96-
- uses: actions/checkout@v3
96+
- uses: actions/checkout@v4
9797
- name: Set up Python
98-
uses: actions/setup-python@v4
98+
uses: actions/setup-python@v5
9999
with:
100-
python-version: "3.8"
100+
python-version: "3.9"
101101
cache: pip
102102

103103
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
os: [ubuntu-latest,windows-latest]
13-
python-version: [3.8, 3.9]
12+
os: [ubuntu-latest, windows-latest]
13+
python-version: ['3.9', '3.10']
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121

0 commit comments

Comments
 (0)