From 4779cbc4c66bf142bb507e09d45e34d21d044147 Mon Sep 17 00:00:00 2001 From: ApiliumDevTeam Date: Thu, 9 Jul 2026 18:34:05 +0200 Subject: [PATCH] ci: bump GitHub Actions (dependabot #86/#89/#90/#97) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Apply the 4 safe CI-action bumps: codecov-action 5→7, action-gh-release 2→3, upload-pages-artifact 4→5, deploy-pages 4→5. Workflow-only, no code risk. The Rust bumps are deferred: rusqlite 0.32→0.39 breaks aingle_graph's sqlite-backend (FromSql API change) and needs a manual migration; esp32-nimble is ESP32-target only (unverifiable here). --- .github/workflows/ci.yml | 2 +- .github/workflows/docs.yml | 4 ++-- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d8ceb5..697eb6c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -252,7 +252,7 @@ jobs: continue-on-error: true - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 with: files: lcov.info fail_ci_if_error: false diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 26e4d04..3a83cbc 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -52,7 +52,7 @@ jobs: echo '' > target/doc/index.html - name: Upload artifact - uses: actions/upload-pages-artifact@v4 + uses: actions/upload-pages-artifact@v5 with: path: target/doc @@ -66,4 +66,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1dfd86..c6c64d3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -143,7 +143,7 @@ jobs: git log --pretty=format:"- %s (%h)" $(git describe --tags --abbrev=0 HEAD^)..HEAD >> CHANGELOG.md 2>/dev/null || echo "- Initial release" >> CHANGELOG.md - name: Create Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: files: artifacts/**/* body_path: CHANGELOG.md