Regular base image update check #885
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
# FILE LOCATION IN REPOSITORY: | |
# | |
# .github/workflows/checkupdate.yml | |
# | |
name: Regular base image update check | |
on: | |
schedule: | |
- cron: "5 0 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: set up manifest-tool | |
run: sudo apt-get install -y skopeo | |
- name: check change | |
run: | | |
skopeo inspect docker://registry.access.redhat.com/ubi8/ubi-minimal:latest | jq .Digest --raw-output > .baseimage | |
docker run --rm --entrypoint sh -u 0 quay.io/cloudservices/policies-ui-backend:latest -c \ | |
'microdnf update > /dev/null; rpm -qa | sort | sha256sum' \ | |
>> .baseimage | |
- name: do change if the digest changed | |
run: | | |
git config user.name 'Update-a-Bot' | |
git config user.email '[email protected]' | |
git add -A | |
git commit -m "chore(image): update and rebuild image" || echo "No new changes" | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
title: 'Update ubi-minimal:latest image digest' |