fix(loader): 缓存Page 和 App 源码的同时也对 sourcemap 进行缓存,并将其传递下去,避免 sourcemap… #6151
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
    
  
  
    
  | # https://github.com/dependabot/dependabot-core/issues/1736 | |
| name: Dependabot | |
| on: pull_request_target | |
| permissions: read-all | |
| jobs: | |
| update-lockfile: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.actor == 'dependabot[bot]' }} | |
| permissions: | |
| contents: write | |
| id-token: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with : | |
| ref : ${{ github.head_ref }} | |
| - name: Generate SBOM | |
| run: | | |
| curl -Lo $RUNNER_TEMP/sbom-tool https://github.com/microsoft/sbom-tool/releases/latest/download/sbom-tool-linux-x64 | |
| chmod +x $RUNNER_TEMP/sbom-tool | |
| $RUNNER_TEMP/sbom-tool generate -b . -bc . -pn ${{ github.repository }} -pv 1.0.0 -ps OwnerName -nsb https://sbom.mycompany.com -V Verbose | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: sbom | |
| path: _manifest/spdx_2.2 | |
| - name: SBOM upload | |
| uses: jhutchings1/[email protected] | |
| with: | |
| filePath: "_manifest/spdx_2.2/" |