Refactor: Reduce semaphore scope in get_image_vcs_ref #119
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
--- | |
name: Validation of image references (image SHAs) in params.env and runtime images | |
on: # yamllint disable-line rule:truthy | |
push: | |
pull_request: | |
paths: | |
- 'manifests/base/commit.env' | |
- 'manifests/base/params.env' | |
- 'manifests/base/commit-latest.env' | |
- 'manifests/base/params-latest.env' | |
- 'ci/check-params-env.sh' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
validation-of-params-env: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y skopeo jq | |
- name: Validate the 'manifests/base/params.env' file content | |
run: | | |
bash ./ci/check-params-env.sh |