Skip to content

Commit 2163496

Browse files
committed
Update a bit CI
1 parent 3ef63a2 commit 2163496

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/ccpp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: build an tests
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v1
10+
- uses: actions/checkout@v4
1111
with:
1212
submodules: true
1313
- name: Install dependencies

.github/workflows/pythonpublish-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: add Python dir to path
2121
run: |
2222
echo "/opt/python/${{ matrix.python-version }}/bin" >> $GITHUB_PATH
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
submodules: true
2626
- name: Build for Python ${{ matrix.python-version }}
@@ -31,7 +31,7 @@ jobs:
3131
- name: Make wheels universal
3232
run: for wheel in $(ls dist/*.whl); do auditwheel repair $wheel; done
3333
- name: Save packages as artifacts
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: py_tsyganenko-linux-${{ matrix.python-version }}
3737
path: wheelhouse/*

.github/workflows/pythonpublish-osx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1515
name: Python ${{ matrix.python-version }}
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Build python wheel
1919
uses: actions/setup-python@v4
2020
with:
@@ -24,7 +24,7 @@ jobs:
2424
pip install --upgrade twine build ninja meson numpy wheel meson-python
2525
FC=gfortran-14 CC=gcc-14 CXX=g++-14 python scripts/build_wheel.py
2626
- name: Save packages as artifacts
27-
uses: actions/upload-artifact@v3
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: py_tsyganenko-MacOs-${{ matrix.python-version }}
3030
path: dist/*

.github/workflows/pythonpublish-win.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
compiler: gcc
2121
version: 12
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Build python wheel
2424
uses: actions/setup-python@v4
2525
with:
@@ -33,7 +33,7 @@ jobs:
3333
CC: ${{ steps.setup-fortran.outputs.cc }}
3434
CXX: ${{ steps.setup-fortran.outputs.cxx }}
3535
- name: Save packages as artifacts
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: py_tsyganenko-windows-${{ matrix.python-version }}
3939
path: dist/*

.github/workflows/tests-win.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
python-version: ['3.9', '3.10']
1212
name: Python ${{ matrix.python-version }}
1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v4
1515
- name: Build python wheel
16-
uses: actions/setup-python@v1
16+
uses: actions/setup-python@v4
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
architecture: x64

0 commit comments

Comments
 (0)