Skip to content

Commit ebc21c7

Browse files
committed
update ci for new actions versions
1 parent 00032aa commit ebc21c7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
matrix:
140140
os: [ubuntu-latest, macos-latest, windows-latest]
141141
steps:
142-
- uses: actions/checkout@master
142+
- uses: actions/checkout@v3
143143
- name: Setup python
144144
uses: actions/setup-python@v4
145145
with:
@@ -206,7 +206,7 @@ jobs:
206206
{ target: "armv7-unknown-linux-gnueabihf", arch: "armv7" },
207207
]
208208
steps:
209-
- uses: actions/checkout@master
209+
- uses: actions/checkout@v3
210210
- name: Build wheels
211211
run: |
212212
echo 'set -ex
@@ -232,7 +232,7 @@ jobs:
232232
export DIST_EXTRA_CONFIG=/tmp/build-opts.cfg
233233
echo -e "[bdist_wheel]\npy_limited_api=cp37" > $DIST_EXTRA_CONFIG
234234
235-
cross-pip wheel --no-build-isolation --no-deps --wheel-dir dist .
235+
cross-pip wheel --no-build-isolation --no-deps --wheel-dir dist . -vv
236236
ls -la dist/
237237
python -m zipfile -l dist/*.whl # debug all files inside wheel file
238238
' > build-wheels.sh
@@ -382,7 +382,7 @@ jobs:
382382
{ msystem: MINGW32, arch: i686, path: mingw32, rust_target: i686-pc-windows-gnu }
383383
]
384384
steps:
385-
- uses: actions/checkout@v2
385+
- uses: actions/checkout@v3
386386
- name: Install MSys2 and dependencies
387387
uses: msys2/setup-msys2@v2
388388
with:
@@ -438,7 +438,7 @@ jobs:
438438
with:
439439
components: rust-src
440440
targets: wasm32-unknown-emscripten
441-
- uses: mymindstorm/setup-emsdk@v11
441+
- uses: mymindstorm/setup-emsdk@v12
442442
with:
443443
version: ${{env.EMSCRIPTEN_VERSION}}
444444
actions-cache-folder: emsdk-cache

examples/html-py-ever/.github/workflows/upload.yml

Lines changed: 2 additions & 2 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@v2
13+
- uses: actions/checkout@v3
1414
- name: Set up Python
1515
uses: actions/setup-python@v2
1616
with:
@@ -27,4 +27,4 @@ jobs:
2727
run: |
2828
python setup.py install --user
2929
cd test && python3 run_all.py
30-
twine upload dist/*
30+
twine upload dist/*

0 commit comments

Comments
 (0)