chore(deps): bump tqdm from 4.67.1 to 4.67.2 in the pip group #200
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
| # This GitHub Actions workflow automatically applies labels to pull requests | |
| # based on the paths that are modified in the pull request. | |
| # | |
| # Workflow Name: Labeler | |
| # Trigger: pull_request_target - This workflow runs when a pull request is targeted. | |
| # | |
| # Permissions: | |
| # - contents: read - Grants read access to repository contents. | |
| # - pull-requests: write - Grants write access to pull requests. | |
| # | |
| # Jobs: | |
| # - label: The job that performs the labeling. | |
| # - runs-on: ubuntu-latest - Specifies the runner environment. | |
| # - permissions: | |
| # - contents: read - Grants read access to repository contents. | |
| # - pull-requests: write - Grants write access to pull requests. | |
| # | |
| # Steps: | |
| # - Harden Runner: Uses the step-security/harden-runner action to enhance security. | |
| # - uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 | |
| # - with: | |
| # - egress-policy: audit - Audits egress traffic. | |
| # | |
| # - Labeler: Uses the actions/labeler action to apply labels based on modified paths. | |
| # - uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b | |
| # - with: | |
| # - repo-token: "${{ secrets.GITHUB_TOKEN }}" - Uses the GitHub token for authentication. | |
| # | |
| # This workflow will triage pull requests and apply a label based on the | |
| # paths that are modified in the pull request. | |
| # | |
| # To use this workflow, you will need to set up a .github/labeler.yml | |
| # file with configuration. For more information, see: | |
| # https://github.com/actions/labeler | |
| name: Labeler | |
| on: [pull_request_target] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: labeler-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0 | |
| with: | |
| egress-policy: audit | |
| - uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1 | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" |