Bump apache/infrastructure-actions/allowlist-check from 775350a154e610e84c460cb1bbe2d2ab26c15cb3 to 273b783e1c02894d757b1905cf4ef3d0ebae745e #31
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: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/**" | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| tags: | |
| - '**' | |
| paths: | |
| - ".github/workflows/**" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || case(github.repository_owner == 'apache', github.sha, github.ref_name) }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' || github.repository_owner != 'apache' }} | |
| jobs: | |
| asf-allowlist-check: | |
| runs-on: ubuntu-slim | |
| steps: | |
| - name: Checkout project | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Check actions | |
| uses: apache/infrastructure-actions/allowlist-check@273b783e1c02894d757b1905cf4ef3d0ebae745e | |
| with: | |
| scan-glob: ".github/workflows/*.y*ml" |