Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ updates:
schedule:
interval: "monthly"
cooldown:
default-days: 5
default-days: 7
groups:
actions:
patterns:
Expand All @@ -23,7 +23,7 @@ updates:
schedule:
interval: "monthly"
cooldown:
default-days: 5
default-days: 7
groups:
pip:
patterns:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arduino_size_deltas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download sketches reports artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: arduino-deltas-*
path: ${{ inputs.reports-path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_arduino.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
# This step is needed to pass the size data to the report job
- name: Upload sketches report to workflow artifact
if: ${{ inputs.enable-deltas-report }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: arduino-deltas-${{ steps.delta-report-name.outputs.report-name }}
path: ${{ inputs.reports-path }}
2 changes: 1 addition & 1 deletion .github/workflows/build_linux_cmake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ jobs:
run: sudo cpack

- name: Save artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: pkg_${{ github.event.repository.name }}_${{ inputs.compiler }}_${{ inputs.driver }}
path: |-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_pico_sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
run: cmake --build . --config "${CMAKE_BUILD_TYPE}"

- name: Save artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: examples_pico_${{ inputs.board-id }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_platformio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
persist-credentials: false

- name: Cache pip
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |-
~/.cache/pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_cpack_artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
# This pattern downloads any artifacts built for armhf or arm64 targets.
# However, it also downloads artifacts built against pigpio and MRAA drivers.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_platformio_artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: write
steps:
- name: Download artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: PIO_pkg_${{ github.event.repository.name }}
path: artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vaildate_platformio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: pio package pack -o "${PIO_PKG_NAME}"

- name: Save artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: PIO_pkg_${{ github.event.repository.name }}
path: PlatformIO*.tar.gz
Expand Down