Skip to content

Update the "alt text loading state" button to indicate when Alter generation is in progress. #1066

Update the "alt text loading state" button to indicate when Alter generation is in progress.

Update the "alt text loading state" button to indicate when Alter generation is in progress. #1066

# Dependency Review Action
#
# This Action will scan dependency manifest files that change as part of a Pull Request, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging.
#
# Source repository: https://github.com/actions/dependency-review-action
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
name: Dependency Review
on: [pull_request]
# Disable permissions for all available scopes by default.
# Any needed permissions should be configured at the job level.
permissions: {}
jobs:
dependency-review:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Dependency Review
uses: actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 # v4.9.0
with:
license-check: true
vulnerability-check: false # Since we only want to use the license check, we need to set this to false as otherwise the default is true.
show-openssf-scorecard: false # Since we only want to use the license check, we need to set this to false as otherwise the default is true.
config-file: './.github/dependency-review-config.yml'