Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/arduino_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
outputs:
answer: ${{ steps.is-needed.outputs.answer }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 2
- name: Check if run by adabot
Expand Down Expand Up @@ -66,15 +66,15 @@ jobs:
if: needs.check-if-needed.outputs.answer == 'true'
needs: check-if-needed
steps:
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"

# Checkout the learn repo itself
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# Checkout the CI scripts
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
repository: adafruit/ci-arduino
path: ci
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:


- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ github.event.repository.name }}.${{ github.sha }}
path: |
Expand All @@ -127,7 +127,7 @@ jobs:

- name: Create release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v3
with:
files: build/${{ matrix.arduino-platform }}.zip
fail_on_unmatched_files: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/githubci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
spdx:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: Checkout Current Repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: check SPDX licensing
run: python ./SPDX.py
Expand All @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.10
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.10"
- name: Versions
Expand All @@ -29,7 +29,7 @@ jobs:
run: |
pip install --force-reinstall pylint==2.7.1
- name: Checkout Current Repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: lint
run: ./pylint_check.sh
4 changes: 2 additions & 2 deletions .github/workflows/images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"

- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Python 3.x
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.x"

Expand Down
Loading