build(deps): bump github.com/onsi/ginkgo/v2 from 2.11.0 to 2.12.1 #401
Workflow file for this run
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 Images | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-fedora: | |
name: Build Fedora image | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Buildah Action | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: selinuxd-fedora | |
tags: latest ${{ github.sha }} | |
dockerfiles: | | |
./images/fedora/Dockerfile | |
build-el8: | |
name: Build EL8 image | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Buildah Action | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: selinuxd-el8 | |
tags: latest ${{ github.sha }} | |
dockerfiles: | | |
./images/el8/Dockerfile | |
build-el9: | |
name: Build EL9 image | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Buildah Action | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: selinuxd-el9 | |
tags: latest ${{ github.sha }} | |
dockerfiles: | | |
./images/el9/Dockerfile |