Skip to content

Commit 0ccfe54

Browse files
committed
fix deployment
1 parent c384521 commit 0ccfe54

2 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
python-version: ["3.10", "3.11", "3.12", "3.13"]
1616

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

20-
- uses: actions/setup-python@v5
20+
- uses: actions/setup-python@v6
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

@@ -50,9 +50,9 @@ jobs:
5050
python-version: ["3.10", "3.13"]
5151

5252
steps:
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v5
5454

55-
- uses: actions/setup-python@v5
55+
- uses: actions/setup-python@v6
5656
with:
5757
python-version: ${{ matrix.python-version }}
5858

.github/workflows/release.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
matrix:
3131
target: [x86_64, aarch64]
3232
steps:
33-
- uses: actions/checkout@v4
34-
- uses: actions/setup-python@v5
33+
- uses: actions/checkout@v5
34+
- uses: actions/setup-python@v6
3535
with:
3636
python-version: "3.10"
3737
- name: Build wheels
@@ -40,7 +40,7 @@ jobs:
4040
target: ${{ matrix.target }}
4141
args: --release --out dist
4242
manylinux: auto
43-
- uses: actions/upload-artifact@v4
43+
- uses: actions/upload-artifact@v5
4444
with:
4545
name: wheels-manylinux-${{ matrix.target }}
4646
path: dist
@@ -52,8 +52,8 @@ jobs:
5252
matrix:
5353
target: [x86_64, aarch64]
5454
steps:
55-
- uses: actions/checkout@v4
56-
- uses: actions/setup-python@v5
55+
- uses: actions/checkout@v5
56+
- uses: actions/setup-python@v6
5757
with:
5858
python-version: "3.10"
5959
- name: Build wheels
@@ -62,7 +62,7 @@ jobs:
6262
target: ${{ matrix.target }}
6363
args: --release --out dist
6464
manylinux: musllinux_1_2
65-
- uses: actions/upload-artifact@v4
65+
- uses: actions/upload-artifact@v5
6666
with:
6767
name: wheels-musllinux-${{ matrix.target }}
6868
path: dist
@@ -74,16 +74,16 @@ jobs:
7474
matrix:
7575
target: [x86_64, aarch64]
7676
steps:
77-
- uses: actions/checkout@v4
78-
- uses: actions/setup-python@v5
77+
- uses: actions/checkout@v5
78+
- uses: actions/setup-python@v6
7979
with:
8080
python-version: "3.10"
8181
- name: Build wheels
8282
uses: PyO3/maturin-action@v1
8383
with:
8484
target: ${{ matrix.target }}
8585
args: --release --out dist
86-
- uses: actions/upload-artifact@v4
86+
- uses: actions/upload-artifact@v5
8787
with:
8888
name: wheels-macos-${{ matrix.target }}
8989
path: dist
@@ -95,8 +95,8 @@ jobs:
9595
matrix:
9696
target: [x64]
9797
steps:
98-
- uses: actions/checkout@v4
99-
- uses: actions/setup-python@v5
98+
- uses: actions/checkout@v5
99+
- uses: actions/setup-python@v6
100100
with:
101101
python-version: "3.10"
102102
architecture: ${{ matrix.target }}
@@ -105,21 +105,21 @@ jobs:
105105
with:
106106
target: ${{ matrix.target }}
107107
args: --release --out dist
108-
- uses: actions/upload-artifact@v4
108+
- uses: actions/upload-artifact@v5
109109
with:
110110
name: wheels-windows-${{ matrix.target }}
111111
path: dist
112112

113113
sdist:
114114
runs-on: ubuntu-latest
115115
steps:
116-
- uses: actions/checkout@v4
116+
- uses: actions/checkout@v5
117117
- name: Build sdist
118118
uses: PyO3/maturin-action@v1
119119
with:
120120
command: sdist
121121
args: --out dist
122-
- uses: actions/upload-artifact@v4
122+
- uses: actions/upload-artifact@v5
123123
with:
124124
name: wheels-sdist
125125
path: dist
@@ -133,7 +133,7 @@ jobs:
133133
name: pypi
134134
url: https://pypi.org/p/synaops
135135
steps:
136-
- uses: actions/download-artifact@v4
136+
- uses: actions/download-artifact@v5
137137
with:
138138
pattern: wheels-*
139139
path: dist

0 commit comments

Comments
 (0)