Skip to content

Bump redhat-cop/github-actions from 4.2 to 4.3 #112

Bump redhat-cop/github-actions from 4.2 to 4.3

Bump redhat-cop/github-actions from 4.2 to 4.3 #112

name: tekton-task-images-helm-pr
on:
pull_request:
paths:
- tekton-task-images/helm/**
- .github/workflows/tekton-task-images-helm-pr.yaml
# Declare default permissions as read only.
permissions: read-all
jobs:
build:
env:
context: tekton-task-images/helm
image_name: helm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Convert VERSION to version.json
run: |
version=$(sed -n '2p' ${{ env.context }}/VERSION | cut -d"=" -f2)
jq -c --null-input --arg version "$version" '{ "version": $version }' > ${{ env.context }}/version.json
- name: Check and verify version.json
id: check_version
uses: redhat-cop/github-actions/get-image-version@1a584131f8a335296e866d1fb0988870ca83aefb # v4
with:
IMAGE_CONTEXT_DIR: ${{ env.context }}
- uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf # v3.1.0
with:
dockerfile: ${{ env.context }}/Dockerfile
ignore: DL3041,SC1091
- 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 contains the version of the binary
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 | grep ${{ steps.check_version.outputs.VERSION }}