chore(deps): update dependency homebrew/openshift-cli to v4.20.11 #257
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: ubi8-bats-pr | |
| on: | |
| pull_request: | |
| paths: | |
| - utilities/ubi8-bats/** | |
| - .github/workflows/ubi8-bats-pr.yaml | |
| # Declare default permissions as read only. | |
| permissions: read-all | |
| jobs: | |
| build: | |
| env: | |
| context: utilities/ubi8-bats | |
| image_name: ubi8-bats | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Check and verify version.json | |
| id: check_version | |
| uses: redhat-cop/github-actions/get-image-version@cc45c69b6655161f278271cd0c68ddcc1444a3f8 # v4.6 | |
| with: | |
| IMAGE_CONTEXT_DIR: ${{ env.context }} | |
| - uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf # v3.1.0 | |
| with: | |
| dockerfile: ${{ env.context }}/Dockerfile | |
| ignore: DL3041 | |
| - name: Build image | |
| uses: redhat-actions/buildah-build@7a95fa7ee0f02d552a32753e7414641a04307056 # v2 | |
| with: | |
| context: ${{ env.context }} | |
| dockerfiles: | | |
| ./${{ env.context }}/Dockerfile | |
| image: ${{ env.image_name }} | |
| oci: true | |
| tags: ${{ steps.check_version.outputs.IMAGE_TAGS }} | |
| - name: Test image | |
| run: | | |
| echo "Running: podman run -t -v $PWD:/code:z ${image_name}:${{ steps.check_version.outputs.VERSION }} /code/utilities/ubi8-bats/test" | |
| podman run -t -v $PWD:/code:z ${image_name}:${{ steps.check_version.outputs.VERSION }} /code/utilities/ubi8-bats/test |