Skip to content

Commit 751fdb7

Browse files
authored
Update actions versions in pythonpackage.yml (#28)
1 parent da536cd commit 751fdb7

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python_minor: [ "6" , "7" , "8" , "9" , "10" ]
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4.2.2
2121
- name: Install cibuildwheel
2222
run: |
2323
python3 -m pip install --upgrade pip
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: macos-11
4242

4343
steps:
44-
- uses: actions/checkout@v2
44+
- uses: actions/checkout@v4.2.2
4545
- name: Install requirements
4646
run: |
4747
pip3 install --user check-manifest twine
@@ -61,7 +61,7 @@ jobs:
6161
run: python3 -m twine check wheelhouse/*
6262

6363
- name: Upload sdist
64-
uses: actions/upload-artifact@v2
64+
uses: actions/upload-artifact@v4.4.3
6565
with:
6666
name: wheels
6767
path: wheelhouse/*.tar.gz
@@ -78,7 +78,7 @@ jobs:
7878
cibw_arch: [ "x86_64", "arm64" ]
7979

8080
steps:
81-
- uses: actions/checkout@v2
81+
- uses: actions/checkout@v4.2.2
8282
- name: Install cibuildwheel
8383
run: |
8484
python3 -m pip install --upgrade pip
@@ -107,7 +107,7 @@ jobs:
107107
run: twine check wheelhouse/*
108108

109109
- name: Upload built wheels
110-
uses: actions/upload-artifact@v2
110+
uses: actions/upload-artifact@v4.4.3
111111
with:
112112
name: wheels
113113
path: wheelhouse/*.whl
@@ -125,10 +125,10 @@ jobs:
125125
cibw_arch: [ "x86_64", "aarch64" ]
126126

127127
steps:
128-
- uses: actions/checkout@v2
128+
- uses: actions/checkout@v4.2.2
129129
- name: Set up QEMU
130130
if: matrix.cibw_arch == 'aarch64'
131-
uses: docker/setup-qemu-action@v1
131+
uses: docker/setup-qemu-action@v3.2.0
132132
with:
133133
platforms: arm64
134134

@@ -150,7 +150,7 @@ jobs:
150150
run: twine check wheelhouse/*
151151

152152
- name: Upload built wheels
153-
uses: actions/upload-artifact@v2
153+
uses: actions/upload-artifact@v4.4.3
154154
with:
155155
name: wheels
156156
path: wheelhouse/*.whl
@@ -163,7 +163,7 @@ jobs:
163163
runs-on: windows-2019
164164

165165
steps:
166-
- uses: actions/checkout@v2
166+
- uses: actions/checkout@v4.2.2
167167
- name: Install cibuildwheel
168168
run: |
169169
python3 -m pip install --upgrade pip
@@ -182,7 +182,7 @@ jobs:
182182
run: twine check wheelhouse/*
183183

184184
- name: Upload built wheels
185-
uses: actions/upload-artifact@v2
185+
uses: actions/upload-artifact@v4.4.3
186186
with:
187187
name: wheels
188188
path: wheelhouse/*.whl
@@ -196,7 +196,7 @@ jobs:
196196

197197
steps:
198198
- name: Collect sdist and wheels
199-
uses: actions/download-artifact@v4.1.7
199+
uses: actions/download-artifact@v4.1.8
200200
with:
201201
name: wheels
202202
path: wheelhouse

0 commit comments

Comments
 (0)