Skip to content

Commit 35f27f7

Browse files
committed
CI: update Python action version
1 parent 7c10d89 commit 35f27f7

3 files changed

Lines changed: 8 additions & 14 deletions

File tree

.github/workflows/ci-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919

2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v1
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

.github/workflows/ci-mac.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: macOS-latest
11+
runs-on: macos-13
1212

1313
strategy:
1414
matrix:
1515
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919

2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v1
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

.github/workflows/ci-windows.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,17 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: windows-latest
11+
runs-on: windows
1212

1313
strategy:
1414
matrix:
1515
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1616

1717
steps:
18-
- uses: actions/checkout@v2
19-
20-
- name: "Print Debug info"
21-
run: |
22-
echo $env:USERPROFILE
23-
echo $env:PATH
24-
echo "$PWD"
18+
- uses: actions/checkout@v4
2519

2620
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v1
21+
uses: actions/setup-python@v5
2822
with:
2923
python-version: ${{ matrix.python-version }}
3024

0 commit comments

Comments
 (0)