Skip to content

chore(deps): update actions/checkout digest to a5ac7e5 #65

chore(deps): update actions/checkout digest to a5ac7e5

chore(deps): update actions/checkout digest to a5ac7e5 #65

Workflow file for this run

name: ubi8-git-pr
on:
pull_request:
paths:
- utilities/ubi8-git/**
- .github/workflows/ubi8-git-pr.yaml
# Declare default permissions as read only.
permissions: read-all
jobs:
build:
env:
context: utilities/ubi8-git
image_name: ubi8-git
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Check and verify version.json
id: check_version
uses: redhat-cop/github-actions/get-image-version@11f2ce27643eb7c76ac3623cb99d9b08be30d762 # v4
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 ${image_name}:${{ steps.check_version.outputs.VERSION }} git --version"
podman run ${image_name}:${{ steps.check_version.outputs.VERSION }} git --version