This repository was archived by the owner on Feb 10, 2026. It is now read-only.
chore: bump github.com/gofiber/fiber/v2 from 2.52.9 to 2.52.11 in /examples/typical_app/src/api #13161
Workflow file for this run
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
| on: | |
| - pull_request | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| name: api-docs | |
| jobs: | |
| api_changes: | |
| runs-on: ARM64 | |
| permissions: | |
| pull-requests: read | |
| outputs: | |
| run_api_ci: ${{ steps.filter.outputs.dependencies }} | |
| steps: | |
| - name: Check for changed files | |
| uses: dorny/paths-filter@v2 | |
| id: filter | |
| with: | |
| filters: | | |
| dependencies: | |
| - '.github/**' | |
| - 'api/**' | |
| - 'shared/**' | |
| update-api-docs: | |
| needs: api_changes | |
| if: ${{ needs.api_changes.outputs.run_api_ci == 'true' }} | |
| runs-on: ARM64 | |
| steps: | |
| - name: Generate token | |
| id: generate_token | |
| uses: actions/create-github-app-token@v1 | |
| with: | |
| app-id: ${{ secrets.GH_ACTIONS_HELPER_APP_ID }} | |
| private-key: ${{ secrets.GH_ACTIONS_HELPER_PK }} | |
| - uses: actions/checkout@v3 | |
| with: | |
| token: ${{ steps.generate_token.outputs.token }} | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version-file: api/go.mod | |
| cache: true | |
| - run: go install github.com/swaggo/swag/cmd/swag@v1.8.5 | |
| - run: cd api && make update-docs | |
| - uses: EndBug/add-and-commit@v9 | |
| with: | |
| add: -A | |
| message: ci - update and format swagger docs |