Skip to content

Commit 5cc1ab5

Browse files
Update actions and Python version. (#150)
1 parent 00c4b2b commit 5cc1ab5

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/performance.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Check out source
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
path: stylist
2020
fetch-depth: 1
2121

2222
- name: Checkout pages
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
ref: gh-pages
2626
fetch-depth: 1
2727
path: gh-pages
2828

2929
- name: Set Python
30-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v5
3131
with:
32-
python-version: 3.7
32+
python-version: 3.9
3333

3434
- name: Cache pip
3535
uses: actions/cache@v4

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
name: Build package
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Set up Python environment
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
18-
python-version: "3.7"
18+
python-version: "3.9"
1919

2020
- name: Cache pip
2121
uses: actions/cache@v4

.github/workflows/pullrequest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424

2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v2
26+
uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929

.github/workflows/sphinx.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ jobs:
2323
# Preparation
2424
#
2525
- name: Check out source
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
path: stylist
2929
fetch-depth: 1
3030

3131
- name: Checkout pages
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
with:
3434
ref: gh-pages
3535
fetch-depth: 1
3636
path: gh-pages
3737

3838
- name: Install Python
39-
uses: actions/setup-python@v2
39+
uses: actions/setup-python@v5
4040
with:
4141
python-version: 3.11
4242

0 commit comments

Comments
 (0)