This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch issue/SLING-13258-check in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-starter.git
commit a5a38c0a8c44cceeda15bab7b2aef24a69d19dc5 Author: Robert Munteanu <[email protected]> AuthorDate: Mon Jul 6 18:03:07 2026 +0200 SLING-13258 - Sling Starter GitHub actions fail: docker/login-action@.... is not allowed Check for valid actions when GitHub actions are changed --- .github/workflows/allowlist-check.yml | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/.github/workflows/allowlist-check.yml b/.github/workflows/allowlist-check.yml new file mode 100644 index 0000000..6786fff --- /dev/null +++ b/.github/workflows/allowlist-check.yml @@ -0,0 +1,39 @@ +# 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: Check Actions Usage + +on: + workflow_dispatch: + push: + branches: + - master + paths: + - ".github/**" + pull_request: + paths: + - ".github/**" + +permissions: + contents: read + +jobs: + check: + name: Check actions usage + uses: apache/infrastructure-actions/.github/workflows/check-project-actions.yml@main + permissions: + contents: read
