chore(deps): update dependency homebrew/openshift-cli to v4.17.3 #110
This file contains 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: toolbox-pr | |
on: | |
pull_request: | |
paths: | |
- tool-box/** | |
- .github/workflows/toolbox-pr.yaml | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
build: | |
env: | |
context: tool-box | |
image_name: toolbox | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Check and verify version.json | |
id: check_version | |
uses: redhat-cop/github-actions/get-image-version@e4729075dcd3f34946b80df6b1bfb952b9fee166 # v4 | |
with: | |
IMAGE_CONTEXT_DIR: ${{ env.context }} | |
- uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf # v3.1.0 | |
with: | |
dockerfile: ${{ env.context }}/Dockerfile | |
ignore: DL3041,SC2174 | |
- 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.VERSION }} | |
- name: Test image contains helm | |
run: | | |
echo "Running: podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} helm version" | |
podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} helm version |