Merge pull request #281 from tekktrik/dev/update-ci
Update CI actions to Node.js 16
This commit is contained in:
commit
8a7d752568
3 changed files with 10 additions and 4 deletions
4
.github/workflows/build_arm.yml
vendored
4
.github/workflows/build_arm.yml
vendored
|
|
@ -43,7 +43,9 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v3
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.x"
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
|
|
|||
4
.github/workflows/build_esp32.yml
vendored
4
.github/workflows/build_esp32.yml
vendored
|
|
@ -85,7 +85,9 @@ jobs:
|
|||
- 'unexpectedmaker_tinys3'
|
||||
steps:
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v3
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.x"
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
|
|
|||
6
.github/workflows/build_selftest.yml
vendored
6
.github/workflows/build_selftest.yml
vendored
|
|
@ -31,7 +31,9 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v3
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.x"
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
|
@ -76,7 +78,7 @@ jobs:
|
|||
|
||||
- name: Save newly generated self-test images as CI artifacts
|
||||
if: always()
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ghostfat_selftest_images
|
||||
path: ./ports/test_ghostfat/_build/${{ matrix.board }}/ghostfat_${{ matrix.board }}.img.gz.gz
|
||||
|
|
|
|||
Loading…
Reference in a new issue