Skip to content

Commit 2fed40c

Browse files
committed
- updated action files
1 parent 52a4dcb commit 2fed40c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v1
13+
- uses: actions/checkout@v3
1414
- name: apt-get update
1515
run: sudo apt-get update --fix-missing
1616
- name: Install packages
@@ -29,11 +29,11 @@ jobs:
2929
python-version: [cp36-cp36m, cp37-cp37m, cp38-cp38, cp39-cp39, cp310-cp310]
3030

3131
steps:
32-
- uses: actions/checkout@v1
32+
- uses: actions/checkout@v3
3333

3434
# Set up python
3535
- name: Set up Python 3.8
36-
uses: actions/setup-python@v1
36+
uses: actions/setup-python@v4
3737
with:
3838
python-version: 3.8
3939

.github/workflows/build-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
# Checkout repo
17-
- uses: actions/checkout@v1
17+
- uses: actions/checkout@v3
1818
# Configure, build and test
1919
- name: configure
2020
run: mkdir build-release;cd build-release;cmake ..
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
# Checkout repo
36-
- uses: actions/checkout@v1
36+
- uses: actions/checkout@v3
3737

3838
# Set up python
3939
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)