chore(deps): update non-major dependencies #15619
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: Broken Links | |
| on: | |
| pull_request: | |
| types: [synchronize, ready_for_review, opened, labeled, unlabeled] | |
| concurrency: | |
| cancel-in-progress: true | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| env: | |
| BUNDLE_GITHUB__COM: x-access-token:${{ secrets.BUNDLE_GITHUB__COM }} | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0 | |
| with: | |
| egress-policy: audit | |
| - name: Check if manual review has been performed | |
| uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 | |
| id: labels | |
| with: | |
| script: | | |
| const { data: labels } = await github.rest.issues.listLabelsOnIssue({ | |
| ...context.repo, | |
| issue_number: context.issue.number | |
| }); | |
| return labels.map(l => l.name).includes('ci:manual-approve:link-validation') | |
| outputs: | |
| result: ${{ steps.labels.outputs.result }} | |
| build: | |
| needs: [check] | |
| if: needs.check.outputs.result == 'false' && !contains(github.event.pull_request.title, '[skip ci]') | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Wait for Pages changed to be neutral | |
| uses: fountainhead/action-wait-for-check@5a908a24814494009c4bb27c242ea38c93c593be # v1.2.0 | |
| id: waitForCheck | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| checkName: "Pages changed - kongdeveloper" | |
| timeoutSeconds: 900 | |
| - name: Wait for Netlify site to be ready | |
| if: steps.waitForCheck.outputs.conclusion == 'neutral' | |
| uses: jakepartusch/wait-for-netlify-action@f1e137043864b9ab9034ae3a5adc1c108e3f1a48 # v1.4 | |
| id: waitForNetlify | |
| with: | |
| site_name: "kongdeveloper" | |
| max_timeout: 120 | |
| - name: Run link checker | |
| run: | | |
| cd tools/broken-link-checker | |
| npm ci | |
| node run.js pr \ | |
| --base_url https://deploy-preview-${{ github.event.pull_request.number }}--kongdeveloper.netlify.app | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |