What's Changed
- Update default runtime to node16 (#340)
- Update
package-lock.json
file version to 2,@types/node
to 16.11.25 andtypescript
to 4.2.3 (#341) - Remove legacy
pypy2
andpypy3
keywords (#342)
Breaking Changes
With the update to Node 16, all scripts will now be run with Node 16 rather than Node 12.
This new major release removes support of legacy pypy2
and pypy3
keywords. Please use more specific and flexible syntax to specify a PyPy version:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 'pypy-2.7' # the latest available version of PyPy that supports Python 2.7
- 'pypy-3.8' # the latest available version of PyPy that supports Python 3.8
- 'pypy-3.8-v7.3.8' # Python 3.8 and PyPy 7.3.8
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
See more usage examples in the documentation