build(deps-dev): bump webpack-cli from 7.2.1 to 7.2.2 in /storm-webapp #214
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
| # Licensed to the Apache Software Foundation (ASF) under one or more | |
| # contributor license agreements. See the NOTICE file distributed with | |
| # this work for additional information regarding copyright ownership. | |
| # The ASF licenses this file to You under the Apache License, Version 2.0 | |
| # (the "License"); you may not use this file except in compliance with | |
| # the License. You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| name: ASF Allowlist Check | |
| on: | |
| workflow_dispatch: | |
| # No paths filter on purpose: as a required status check (see .asf.yaml) this | |
| # job must report a status on every PR, otherwise PRs that don't touch | |
| # .github/** would stay "Expected — waiting for status" and be blocked forever. | |
| pull_request: | |
| push: | |
| branches: [ "master" ] | |
| paths: | |
| - ".github/**" | |
| permissions: | |
| contents: read | |
| jobs: | |
| asf-allowlist-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: apache/infrastructure-actions/allowlist-check@main | |
| with: | |
| # Storm uses both .yml and .yaml workflow files. The check uses | |
| # Python's glob.glob(), which does not support brace expansion, so | |
| # use *.y*ml to match both extensions in a single pattern. | |
| scan-glob: ".github/**/*.y*ml" |