Update dependency idna to v3.10 #162
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: Build redhat-csp-download | |
on: | |
push: | |
paths: | |
- .github/workflows/redhat-csp-download-build.yaml | |
- redhat-csp-download/** | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
build-redhat-csp-download: | |
env: | |
context: redhat-csp-download | |
image_name: redhat-csp-download | |
branch_name: ${{ github.head_ref || github.ref_name }} | |
ref_type: ${{ github.ref_type }} | |
owner: ${{ github.repository_owner }} | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Get image tags | |
id: image_tags | |
uses: redhat-cop/github-actions/get-image-version@1a584131f8a335296e866d1fb0988870ca83aefb # v4.3 | |
with: | |
IMAGE_CONTEXT_DIR: ${{ env.context }} | |
- uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf # v3.1.0 | |
with: | |
dockerfile: redhat-csp-download/Dockerfile_build | |
- name: Build image | |
id: build_image | |
uses: redhat-actions/buildah-build@7a95fa7ee0f02d552a32753e7414641a04307056 # v2 | |
with: | |
context: ${{ env.context }} | |
dockerfiles: | | |
./${{ env.context }}/Dockerfile_build | |
image: ${{ env.image_name }} | |
oci: true | |
tags: "${{ steps.image_tags.outputs.IMAGE_TAGS }}" | |
- name: Push to ghcr.io | |
if: ${{ env.ref_type == 'tag' || env.owner != 'redhat-cop' }} # Stops push running when bots create a PR, which fails due to token | |
uses: redhat-actions/push-to-registry@5ed88d269cf581ea9ef6dd6806d01562096bee9c # v2 | |
with: | |
image: ${{ steps.build_image.outputs.image }} | |
registry: ghcr.io/${{ github.repository }} | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
tags: ${{ steps.build_image.outputs.tags }} |