1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2026-05-19 02:25:18 +00:00

Upgrade Doxygen workflow actions to v5

This commit is contained in:
Chris Josten 2026-05-06 12:48:55 +02:00 committed by GitHub
parent c3278cd6e9
commit 66e3387254
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,17 +24,20 @@ jobs:
- name: Doxygen - name: Doxygen
uses: mattnotmitt/doxygen-action@edge uses: mattnotmitt/doxygen-action@edge
- name: Upload GitHub pages artifact - name: Upload GitHub pages artifact
uses: "actions/upload-pages-artifact@v2" uses: "actions/upload-pages-artifact@v5"
with: with:
path: "doxygen/html/" path: "doxygen/html/"
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build needs: build
permissions:
pages: write
id-token: write
environment: environment:
name: github-pages name: github-pages
url: ${{ steps.deployment.outputs.page_url }} url: ${{ steps.deployment.outputs.page_url }}
steps: steps:
- name: Deploy to GitHub Pages - name: Deploy to GitHub Pages
id: deployment id: deployment
uses: "actions/deploy-pages@v2" uses: "actions/deploy-pages@v5"