diff --git a/.github/workflows/arduino_size_deltas.yaml b/.github/workflows/arduino_size_deltas.yaml index 81ff2c3..c6f1bee 100644 --- a/.github/workflows/arduino_size_deltas.yaml +++ b/.github/workflows/arduino_size_deltas.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download sketches reports artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: pattern: arduino-deltas-* path: ${{ inputs.reports-path }} diff --git a/.github/workflows/build_arduino.yaml b/.github/workflows/build_arduino.yaml index 537d74c..ed7f9d6 100644 --- a/.github/workflows/build_arduino.yaml +++ b/.github/workflows/build_arduino.yaml @@ -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@v6 + uses: actions/upload-artifact@v7 with: name: arduino-deltas-${{ steps.delta-report-name.outputs.report-name }} path: ${{ inputs.reports-path }} diff --git a/.github/workflows/build_linux_cmake.yaml b/.github/workflows/build_linux_cmake.yaml index 079c472..15e37e6 100644 --- a/.github/workflows/build_linux_cmake.yaml +++ b/.github/workflows/build_linux_cmake.yaml @@ -241,7 +241,7 @@ jobs: run: sudo cpack - name: Save artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: pkg_${{ github.event.repository.name }}_${{ inputs.compiler }}_${{ inputs.driver }} path: |- diff --git a/.github/workflows/build_pico_sdk.yaml b/.github/workflows/build_pico_sdk.yaml index 8dd0661..a82d79d 100644 --- a/.github/workflows/build_pico_sdk.yaml +++ b/.github/workflows/build_pico_sdk.yaml @@ -118,7 +118,7 @@ jobs: run: cmake --build . --config "${CMAKE_BUILD_TYPE}" - name: Save artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: examples_pico_${{ inputs.board-id }} path: | diff --git a/.github/workflows/deploy_cpack_artifacts.yaml b/.github/workflows/deploy_cpack_artifacts.yaml index dfca3af..ef19173 100644 --- a/.github/workflows/deploy_cpack_artifacts.yaml +++ b/.github/workflows/deploy_cpack_artifacts.yaml @@ -13,7 +13,7 @@ jobs: contents: write steps: - name: Download artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: # This pattern downloads any artifacts built for armhf or arm64 targets. # However, it also downloads artifacts built against pigpio and MRAA drivers. diff --git a/.github/workflows/deploy_docs.yaml b/.github/workflows/deploy_docs.yaml index 9f48b2d..7ac216d 100644 --- a/.github/workflows/deploy_docs.yaml +++ b/.github/workflows/deploy_docs.yaml @@ -15,7 +15,7 @@ jobs: pages: write # to deploy to Pages id-token: write # to verify the deployment originates from an appropriate source steps: - - uses: actions/deploy-pages@v4 + - uses: actions/deploy-pages@v5 id: deployment with: artifact_name: ${{ github.event.repository.name }}_doxygen_docs diff --git a/.github/workflows/deploy_platformio_artifact.yaml b/.github/workflows/deploy_platformio_artifact.yaml index a2ba99d..83c9cf4 100644 --- a/.github/workflows/deploy_platformio_artifact.yaml +++ b/.github/workflows/deploy_platformio_artifact.yaml @@ -13,7 +13,7 @@ jobs: contents: write steps: - name: Download artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: PIO_pkg_${{ github.event.repository.name }} path: artifacts diff --git a/.github/workflows/validate_platformio.yaml b/.github/workflows/validate_platformio.yaml index de6b739..39a1699 100644 --- a/.github/workflows/validate_platformio.yaml +++ b/.github/workflows/validate_platformio.yaml @@ -37,7 +37,7 @@ jobs: run: pio package pack -o "${PIO_PKG_NAME}" - name: Save artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: PIO_pkg_${{ github.event.repository.name }} path: PlatformIO*.tar.gz