Update GitHub Actions per deprecation notice

Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/setup-python@v1. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.

Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: docker/setup-qemu-action@v1. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
This commit is contained in:
Jacob Alexander
2023-01-27 10:52:49 -08:00
parent b791c61f82
commit d62ba169c9
3 changed files with 6 additions and 6 deletions

View File

@@ -6,9 +6,9 @@ jobs:
docs: docs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Set up Python 3.8 - name: Set up Python 3.8
uses: actions/setup-python@v1 uses: actions/setup-python@v4
with: with:
python-version: 3.8 python-version: 3.8
- name: Install dependencies - name: Install dependencies

View File

@@ -15,10 +15,10 @@ jobs:
env: env:
py: /opt/python/${{ matrix.python-version }}/bin/python py: /opt/python/${{ matrix.python-version }}/bin/python
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v3
- name: Set up QEMU - name: Set up QEMU
id: qemu id: qemu
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v2
- name: Building pycapnp and packaging - name: Building pycapnp and packaging
run: | run: |
docker run --rm -v ${{ github.workspace }}:/ws:rw --workdir=/ws \ docker run --rm -v ${{ github.workspace }}:/ws:rw --workdir=/ws \

View File

@@ -33,9 +33,9 @@ jobs:
arch: arm64 arch: arm64
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies