Update actions to use Node.js 16
This commit is contained in:
parent
0400b3cc84
commit
54993324d5
3 changed files with 5 additions and 5 deletions
4
.github/workflows/adabot_cron.yml
vendored
4
.github/workflows/adabot_cron.yml
vendored
|
|
@ -29,13 +29,13 @@ jobs:
|
|||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
||||
run: echo "$GITHUB_CONTEXT"
|
||||
- name: Set up Python 3.x
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.9
|
||||
- name: Versions
|
||||
run: |
|
||||
python3 --version
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
- name: Install deps
|
||||
|
|
|
|||
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -27,14 +27,14 @@ jobs:
|
|||
# be limited (they run on all forks' default branches).
|
||||
if: startswith(github.repository, 'adafruit/')
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
submodules: true
|
||||
- name: Update Awesome CircuitPython
|
||||
run: |
|
||||
(cd awesome-circuitpython && git fetch origin main:main && git checkout main)
|
||||
- name: Set up Python 3.x
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.x
|
||||
- uses: ruby/setup-ruby@v1
|
||||
|
|
|
|||
2
.github/workflows/images.yml
vendored
2
.github/workflows/images.yml
vendored
|
|
@ -16,7 +16,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Compress Images
|
||||
uses: calibreapp/image-actions@main
|
||||
|
|
|
|||
Loading…
Reference in a new issue