From 66e338725463610270a6f0ccc0baaf1c46e60624 Mon Sep 17 00:00:00 2001 From: Chris Josten Date: Wed, 6 May 2026 12:48:55 +0200 Subject: [PATCH] Upgrade Doxygen workflow actions to v5 --- .github/workflows/doxygen.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/doxygen.yaml b/.github/workflows/doxygen.yaml index c0d2c8c..a66cc08 100644 --- a/.github/workflows/doxygen.yaml +++ b/.github/workflows/doxygen.yaml @@ -24,17 +24,20 @@ jobs: - name: Doxygen uses: mattnotmitt/doxygen-action@edge - name: Upload GitHub pages artifact - uses: "actions/upload-pages-artifact@v2" + uses: "actions/upload-pages-artifact@v5" with: path: "doxygen/html/" deploy: runs-on: ubuntu-latest needs: build + permissions: + pages: write + id-token: write environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: - name: Deploy to GitHub Pages id: deployment - uses: "actions/deploy-pages@v2" + uses: "actions/deploy-pages@v5"