Bump com.google.guava:guava from 33.5.0-jre to 33.6.0-jre (#279) #37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Documentation Deployment | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| tags: | |
| - '*' | |
| concurrency: | |
| group: gh-pages | |
| jobs: | |
| deploy-doc: | |
| name: Deploy Stable Documentation | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # mike needs full history to push to gh-pages | |
| - name: Deploy Documentation | |
| uses: secure-software-engineering/actions/documentation/deployment@develop | |
| with: | |
| version: ${{ github.ref_name }} |